| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5815 | 张亦杨 | 判断3的倍数 | C++ | Accepted | 100 | 0 MS | 244 KB | 144 | 2020-08-15 08:50:19 |
#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if(a%3==0) cout<<"Yes"; if(a%3!=0) cout<<"No"; return 0; }