Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134318 李鸿文添 神秘数字 C++ Accepted 2 MS 276 KB 422 2025-10-26 17:20:47

Tests(10/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a,b; cin>>a>>b; for(int b=a;;b++){ if((b+1)%3==2&&(b+1)%5==3&&(b+1)%7==2){ cout<<b+1;return 0; } } return 0; }