| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5814 | 朱彦宇 | 判断3的倍数 | C++ | Accepted | 100 | 0 MS | 248 KB | 137 | 2020-08-15 08:49:48 |
#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if(a%3==0) cout<<"Yes"; else cout<<"No"; return 0; }