Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
140421 王安安 15听到多少次掌声 C++ Wrong Answer 0 MS 264 KB 292 2025-12-14 12:03:40

Tests(0/1):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a=0,b=0,d=0; int i=1,num=0; while(a+b+d<30){ int f=0; a++; f=1; if(i%2==0){ b++; f=1; } if(i%4==0){ d++; f=1; } if(f==1){ num++; } i++; } cout<<num; return 0; }


Run Info:

------Input------
0
------Answer-----
20
------Your output-----
18