| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5759 | 陈万瑄 | 判断3的倍数 | C++ | Wrong Answer | 0 | 0 MS | 244 KB | 143 | 2020-08-15 08:34:16 |
#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; }