码迷,mamicode.com
首页 > Windows程序 > 详细

AcWing 892. 台阶-Nim游戏

时间:2019-11-23 18:20:29      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:++   namespace   res   include   游戏   nim游戏   ace   span   else   

 

#include<iostream>
using namespace std;
int n;
int main() {
    cin>>n;
    int res=0;
    for(int i=1; i<=n; i++) {
        int x;
        cin>>x;
        if(i%2) res=res^x;//判断是不是奇数
    }
    if(res!=0) cout<<"Yes"<<endl;
    else cout<<"No"<<endl;
    return 0;
}

 

AcWing 892. 台阶-Nim游戏

标签:++   namespace   res   include   游戏   nim游戏   ace   span   else   

原文地址:https://www.cnblogs.com/QingyuYYYYY/p/11918942.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!