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

Tests(0/1):


Code:

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


Run Info:

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