Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
104733 | Kevin | 19老李吃水果 | C++ | Wrong Answer | 1 MS | 308 KB | 485 | 2025-01-09 15:06:34 |
#include<bits/stdc++.h> using namespace std; int main(){ int k,n,m,max; int a[10000]={0}; cin>>k; for(int i=1;i<=k;i++){ max=0; cin>>n; for(int j=1;j<=n;j++){ cin>>m; a[m]++; } for(int j=0;j<10000;j++){ if(a[j]>0){ if(max<a[j]) max=a[j]; } } if(n%2==0){ if(max<=n/2) cout<<"Y"<<endl; else cout<<"N"<<endl; } else{ if(max<=(n/2+1)) cout<<"Y"<<endl; else cout<<"N"<<endl; } max=0; } return 0; }
------Input------
3 6 1 2 4 2 2 4 5 1 1 1 2 1 6 1 2 4 2 2 4
------Answer-----
Y N Y
------Your output-----
Y N N