提交时间:2022-08-03 15:42:10

运行 ID: 56876

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