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

AcWing 891. Nim游戏(裸题)

程序员文章站 2022-03-16 08:45:55
...

题目链接:点击这里

AcWing 891. Nim游戏(裸题)

#include<iostream>
#include<cstdio>
#include<algorithm>

using namespace std;

int main()
{
    int n, res = 0;
    scanf("%d", &n);
    
    while(n--)
    {
        int x;
        scanf("%d", &x);
        res ^= x;
    }
    
    if(res != 0)    puts("Yes");
    else    puts("No");
    
    return 0;
}
相关标签: 博弈论