| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 122651 | 刘益梵 | 15听到多少次掌声 | C++ | Wrong Answer | 0 MS | 260 KB | 269 | 2025-06-21 11:49:02 |
#include<bits/stdc++.h> using namespace std; int main(){ int a=0,b=0,c=0,x=1; while(a<10 || b<10 || c<10){ if(a<10){ a++; } if(x%2==0 && b<10){ b++; } if(x%4==0 && c<10){ c++; } x++; } cout<<a+b+c; return 0; }
------Input------
0
------Answer-----
20
------Your output-----
30