欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

NIM 游戏 acwing891

程序员文章站 2022-06-29 18:35:13
...

NIM 游戏 acwing891
图片摘自 百度百科
博弈的范畴

#include <iostream>

using namespace std;

const int N = 100100;

int main()
{
    
    int n, t, ans = 0;cin >> n;
    scanf("%d", &t);
    ans = t;
    for(int i = 1; i < n ; i ++)
    {
        scanf("%d", &t);
        ans ^= t;
    }
    if(ans == 0) cout << "No" << endl;
    
    else cout << "Yes" << endl;
    return 0;
}