Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
128556 王晏林 神秘数字 C++ Wrong Answer 1 MS 272 KB 191 2025-08-18 12:24:02

Tests(0/10):


Code:

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


Run Info:

------Input------
274
------Answer-----
338
------Your output-----
4195088