QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#589664#9313. Make MaxmikuloveWA 1ms3640kbC++20923b2024-09-25 19:26:382024-09-25 19:26:38

Judging History

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

  • [2024-09-25 19:26:38]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3640kb
  • [2024-09-25 19:26:38]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define int long long 
#define wil() int T;cin>>T;while(T--)
#define per(i,l,r) for(int i=l;i<=r;i++)
#define rep(i,r,l) for(int i=r;i>=l;i--)
#define all(it) it.begin(),it.end()
#define rall(it) it.rbegin(),it.rend()
#define PII pair<int,int> 
int mod = 998244353;
#define inf 0x3f3f3f3f
const int N = 2e2 + 5;

int a[N],b[N],c[N];

int n, m, q;

void sol(){
    cin >> n;
    while (n--) {
        int ans = 0;
        per(i,0,31){
        	cin>>a[i];
        	if(a[i]<=a[0]) ans++;
		}
        if (ans == 32) cout<<"1"<<endl;
        else if (ans >= 28) cout<<"2"<<endl;
        else if (ans >= 14) cout<<"4"<<endl;
        else if (ans >= 7) cout<<"8"<<endl;
        else if (ans >= 3) cout<<"16"<<endl;
        else cout<<"32"<<endl;
    }
}

signed main(){
	std::ios::sync_with_stdio(false);
	std::cin.tie(0);
//	wil()
	sol();
} 


详细

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3640kb

input:

4
2
1 2
2
2 2
7
1 1 1 2 2 2 2
3
1 2 3

output:

2
2
2
2

result:

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