何处为贪心
2024-08-25 21:14:14
发布于:云南
1阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int T; cin >> T;
while(T--){
int n; cin >> n;
int ACGO = 0,A = 0;
while(n--){
int t; cin >> t;
if(t % 2 == 0) ACGO += t;
else A += t;
}
if(ACGO > A) cout << "YES\n";
else cout << "NO\n";
}
return 0;
}
这里空空如也
有帮助,赞一个