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

Tests(1/1):


Code:

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