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