Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
140430 刘杨国卿 15听到多少次掌声 C++ Accepted 0 MS 260 KB 326 2025-12-14 12:16:42

Tests(1/1):


Code:

#include <bits/stdc++.h> using namespace std; int main (){ int a=0,b=0,c=0,i=0,num=0; while(a+b+c<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(c<10){ c++; f=1; } } if(f==1){ num++; } i++; } cout<<num; return 0; }