| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 124968 | 陈馨逸 | 7的倍数 | C++ | Wrong Answer | 0 | 0 MS | 236 KB | 146 | 2024-01-23 16:14:23 |
#include<bits/stdc++.h> using namespace std; int main() { int x; cin>>x; if(7%x==0){ cout<<"yes"; } else { cout<<"no"; } }