Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
7964 刘逸杭 神秘数字 C++ Accepted 0 MS 256 KB 250 2025-05-31 19:45:47

Tests(10/10):


Code:

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