Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
77060 | 邓嘉懿 | 19老李吃水果 | C++ | Accepted | 1 MS | 312 KB | 507 | 2024-06-08 10:32:36 |
#include <bits/stdc++.h> using namespace std; int main () { int k; cin>>k; while(k--) { int n; cin>>n; int t[10001]= {0},sg; for(int i=1; i<=n; i++) { cin>>sg; t[sg]++; } int mx=0; for(int i=1; i<=n; i++) { if(t[i]>mx) { mx=t[i]; } } if(n%2==0) { if(mx<=n/2) { cout<<"Y"<<endl; } else { cout<<"N"<<endl; } } else { if(mx<=n/2+1) { cout<<"Y"<<endl; } else { cout<<"N"<<endl; } } } return 0; }