Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
56752 | 杨中琦 | 比较奇偶数个数 | C++ | 通过 | 100 | 0 MS | 248 KB | 260 | 2022-08-03 14:25:09 |
#include<bits/stdc++.h> using namespace std; int main() { int n,x; while(cin>>n){ int ji=0,ou=0; for(int i=1;i<=n;i++){ cin>>x; if(x%2==0)ou++; else ji++; } if(ou>ji)cout<<"NO"<<endl; else cout<<"YES"<<endl; } return 0; }