AcWing 891. Nim游戏(裸题)
程序员文章站
2022-03-16 08:45:55
...
题目链接:点击这里
#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;
}
上一篇: js正则表达式
下一篇: vue动态绑定class的最常用几种方式