| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 136187 | 张咏灏 | 神秘数字 | C++ | Wrong Answer | 1 MS | 268 KB | 166 | 2025-11-09 17:31:08 |
#include<iostream> using namespace std; int main(){ int a,b; cin>>a; while(b<a&&b%3==2&&b%5==3&&7==5){ b++; } cout<<b; return 0; }
------Input------
274
------Answer-----
338
------Your output-----
0