记录编号 86184 评测结果 AAAAAAAAAA
题目名称 [UVa 1482] 取石子游戏 最终得分 100
用户昵称 Gravatar雪狼 是否通过 通过
代码语言 C++ 运行时间 0.007 s
提交时间 2014-01-22 09:47:02 内存使用 0.31 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#define REP(i,a,b) for(int i=a;i!=b+1;++i)
#define CLR(c,x) memset(c,x,sizeof(c))
#define MAX_N 10000+10
using namespace std;
typedef long long LL;
LL n,v,a;
LL SG(LL x){return (x&1)?SG(x/2):x/2;}
void setIO(string s){
	string in=s+".in",out=s+".out";
	freopen(in.c_str(),"r",stdin);
	freopen(out.c_str(),"w",stdout);
}
void read(){
	scanf("%d",&n);v=0;
	REP(i,1,n)scanf("%lld",&a),v^=SG(a);
}
void work(){
	if(v)printf("YES\n");
	else printf("NO\n");
}
int main(){
	setIO("stones");
	int T;
	scanf("%d",&T);
	while(T--)read(),work();
	return 0;
}