Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
147441 曾钰涵 神秘数字 C++ Time Limit Exceeded 1000 MS 268 KB 215 2026-02-05 11:10:07

Tests(0/10):


Code:

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