Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
90844 | 任斌 | 19老李吃水果 | C++ | Wrong Answer | 1 MS | 308 KB | 513 | 2024-09-17 10:17:07 |
#include<bits/stdc++.h> using namespace std; int main() { int n,i,j,max=0,d,ai,a[10001]={0}; cin>>n; for(i=0;i<n;i++){ max=0; cin>>d; for(j=0;j<d;j++){ cin>>ai; a[ai]++; } for(j=0;j<10001;j++){ if(a[j]>0) if(max<a[j]) max=a[j]; } if(d%2==0){ if(max>d/2) cout<<"N"<<endl; else cout<<"Y"<<endl; } else if(d%2!=0){ if(max>d/2+1) cout<<"N"<<endl; else cout<<"Y"<<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