QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#570797 | #9308. World Cup | yyf | Compile Error | / | / | C++14 | 488b | 2024-09-17 17:52:31 | 2024-09-17 17:52:31 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
void solve(){
int n;
cin>>n;
int x;
int cnt=0;
for(int i=0;i<31;i++){
cin>>x;
if(x>n) cnt++;
}
if(cnt<2) cout<<32<<endl;
else if(cnt<6) cout<<16<<endl;
else if(cnt<13) cout<<8<<endl;
else if(cnt<27) cout<<4<<endl;
else if(cnt<31) cout<<2<<endl;
else cout<<1<<endl;
return ;
}
int main(){
int t;
cin>>t;
while(t--) solve();
return 0;-
}
詳細信息
answer.code: In function ‘int main()’: answer.code:25:1: error: expected primary-expression before ‘}’ token 25 | } | ^