NIM 游戏 acwing891
程序员文章站
2022-06-29 18:35:13
...
图片摘自 百度百科
博弈的范畴
#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;
}
上一篇: OPENSSL: ECDSA算法验签之签名数据的DER格式同一处理
下一篇: 发送和接收信息