Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
147451 孔声豪 满足条件的数 C++ Wrong Answer 0 MS 268 KB 252 2026-02-05 11:23:21

Tests(0/1):


Code:

#include <iostream> using namespace std; int main(){ int a,b,c,x=0; cin>>a>>b>>c; while(a==a){ x++; if(a%x==b%x&&a%x==c%x&&b%x==c%x){ cout<<x<<endl; break; } } return 0; }


Run Info:

------Input------
300 262 205
------Answer-----
19
------Your output-----
1