Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
56766 202203xhl 比较奇偶数个数 C++ 输出超限 0 4 MS 256 KB 284 2022-08-03 14:33:01

Tests(0/1):


#include<bits/stdc++.h> using namespace std; int main() { int n; int a[1001]; while(1) { cin>>n; int j=0,o=0; for(int i=1; i<=n; i++) { cin>>a[i]; if(a[i]%2==0) o++; else j++; } if(o>j) cout<<"NO"<<endl; else cout<<"YES"<<endl; } return 0; }


测评信息: