| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5761 | 桑迪 | 判断3的倍数 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 138 | 2020-08-15 08:35:12 |
#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if(a%3==0) cout<<"yes"; else cout<<"no"; return 0; }