| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 154898 | 岑思烁 | 19神秘数字 | C++ | Wrong Answer | 1 MS | 268 KB | 192 | 2026-05-31 11:03:33 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; for(int c = n+1;;c++){ if(c%3==2 and c%5==3 and c%7==2){ cout<<c; return 0; } } return 0; }
------Input------
0
------Answer-----
1993
------Your output-----
23