Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
56771 202203xhl 比较奇偶数个数 C++ 通过 100 0 MS 248 KB 277 2022-08-03 14:34:17

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main() { int n; int a[1001]; while(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; }


测评信息: