Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
95691 林嘉乐 神秘数字 C++ Accepted 1 MS 272 KB 223 2024-11-01 20:11:33

Tests(10/10):


Code:

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