Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
56758 202203xhl 比较奇偶数个数 C++ 输出超限 0 15 MS 252 KB 268 2022-08-03 14:32:31

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"; else cout<<"YES"; } return 0; }


测评信息: