首页 > 其他 > 详细

POJ 2234 Matches Game

时间:2016-03-04 21:02:27      阅读:235      评论:0      收藏:0      [点我收藏+]

Nim游戏模板题。

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int n,ans=0;
int main()
{
while (scanf("%d",&n)==1)
{
int x;
ans=0;
for (int i=1;i<=n;i++)
{
scanf("%d",&x);
ans=ans^x;
}
if (ans==0) printf("No\n");
else printf("Yes\n");
}
return 0;
}

POJ 2234 Matches Game

原文:http://www.cnblogs.com/ziliuziliu/p/5243328.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!