QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#577871#9308. World Cup1659572519WA 0ms3504kbC++14517b2024-09-20 15:11:522024-09-20 15:11:53

Judging History

你现在查看的是最新测评结果

  • [2024-09-20 15:11:53]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3504kb
  • [2024-09-20 15:11:52]
  • 提交

answer

#include<bits/stdc++.h>
#define i64 long long
using namespace std;
int a[35];
int main(){
	ios::sync_with_stdio(false);
	cin.tie(0);cout.tie(0);
	int T;
	cin>>T;
	while(T--){
		cin>>a[1];
		int num=0;
		for(int i=2;i<=32;i++){
			cin>>a[i];
			if(a[i]<a[1])num++;
		}
		if(num<=1){
			cout<<32;
		}else if(num<=4){
			cout<<16;
		}else if(num<=28){
			cout<<8;
		}else if(num<=30){
			cout<<4;
		}else if(num<32){
			cout<<2; 
		}else{
			cout<<1;
		}
		cout<<endl;
	}
	
	return 0;
} 

詳細信息

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3504kb

input:

1
32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1

output:

2

result:

wrong answer 1st numbers differ - expected: '1', found: '2'