| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 3920 | A班-袁誉晏 | 不吉利的数字 | C++ | Wrong Answer | 0 | 1 MS | 260 KB | 368 | 2025-01-04 12:07:56 |
#include <bits/stdc++.h> using namespace std; int main() { int n,flag=1; cin>>n; int m=n; while(n!=0) { int p=n%10; if(flag==1) { n%4; break; } p/=10; } if(flag==0 || m%13==0) { cout<<"NO"; } else { cout<<"OK"; } }