题解
2024-02-24 20:09:09
发布于:广东
8阅读
0回复
0点赞
#include <iostream>
#include <cstdio>
using namespace std;
int ctj, cto;
int main(){
int n, x;
cin >> n;
for(int i = 1; i <= n * 2; i++){
cin >> x;
if(x % 2) ctj++;
else cto++;
}cout << (ctj == cto ? "YES" : "NO");
return 0;
}斜体文本
这里空空如也
有帮助,赞一个