Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
128678 胥博雯 满足条件的数 C++ Wrong Answer 1 MS 268 KB 239 2025-08-19 11:56:22

Tests(0/1):


Code:

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


Run Info:

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