結果

問題 No.1716 Bonus Nim
ユーザー 沙耶花
提出日時 2021-10-22 21:58:10
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 515 bytes
コンパイル時間 4,867 ms
コンパイル使用メモリ 249,908 KB
最終ジャッジ日時 2025-01-25 03:35:30
ジャッジサーバーID
(参考情報)
judge2 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 15 WA * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000


int main(){
	
	int _t;
	cin>>_t;
	
	rep(_,_t){
		int N;
		cin>>N;
		int X = 0;
		vector<int> a(N);
		rep(i,N)cin>>a[i];
		
		
		rep(i,N)X ^= a[i];
		
		bool f = true;
		if(X==0)f = false;
		rep(i,N){
			//if(a[i]==X)f ^= 1;
		}
		
		if(f)cout<<"Alice"<<endl;
		else cout<<"Bob"<<endl;
	}
	return 0;
}
0