| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 140424 | 王安安 | 15听到多少次掌声 | C++ | Accepted | 0 MS | 268 KB | 356 | 2025-12-14 12:09:41 |
#include<bits/stdc++.h> using namespace std; int main(){ int a=0,b=0,d=0; int i=0,num=0; while(a+b+d<30){ int f=0; if(a<10){ a++; f=1; } if(i%2==0){ if(b<10){ b++; f=1; } } if(i%4==0){ if(d<10){ d++; f=1; } } if(f==1){ num++; } i++; } cout<<num; return 0; }