比赛 EYOI与SBOI开学欢乐赛6th 评测结果 WWAAAAAAAA
题目名称 夕景昨日 最终得分 80
用户昵称 该账号已注销 运行时间 0.168 s
代码语言 C++ 内存使用 3.30 MiB
提交时间 2022-09-19 21:10:54
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,a[100010],cnt=0;
long long tot=0;
bool v[500010],k=0;
int main(){
    freopen("switchs.in","r",stdin);
    freopen("switchs.out","w",stdout);
    cin>>n;
    for(int i=1;i<=n;i++){
        int x;
        cin>>x;
        if(v[x]==1){
            cout<<"Yes"<<endl;
            return 0;
        }
        v[x]=1;a[i]=x;
        if(x==0)k=1;
        tot+=x;
    }
    if(k==0&&tot%2==1){
        cout<<"No"<<endl;
        return 0;
    }
    cout<<"Yes"<<endl;
    return 0;
}