| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147449 | 曾钰涵 | 满足条件的数 | C++ | Wrong Answer | 0 MS | 268 KB | 212 | 2026-02-05 11:17:46 |
#include<iostream> using namespace std; int main(){ int b; cin>>b; while(1){ if(b%3==2&&b%5==3&&b%7==2){ cout<<b; break; } b++; } return 0; }
------Input------
300 262 205
------Answer-----
19
------Your output-----
338