| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147450 | 孔声豪 | 满足条件的数 | C++ | Wrong Answer | 0 MS | 268 KB | 237 | 2026-02-05 11:18:23 |
#include <iostream> using namespace std; int main(){ int a,b,c,x=0; cin>>a>>b>>c; while(a==a){ x++; if(x%a==x%b==x%c){ cout<<x<<endl; break; } } return 0; }
------Input------
300 262 205
------Answer-----
19
------Your output-----
1