| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 140895 | 李昱龙 | 15听到多少次掌声 | C++ | Wrong Answer | 0 MS | 256 KB | 306 | 2025-12-20 14:26:15 |
#include<bits/stdc++.h> using namespace std; int main(){ int cnt=0; int qw=0,xm=0,yz=0,sum=0; while(cnt<10){ qw++; if(qw<10) sum++; xm++; if(xm<10) sum++; yz++; if(yz<10) sum++; cnt++; if(qw==xm&&qw==yz){ sum++; } } cout<<sum; return 0; }
------Input------
0
------Answer-----
20
------Your output-----
37