結果
| 問題 |
No.1716 Bonus Nim
|
| コンテスト | |
| ユーザー |
沙耶花
|
| 提出日時 | 2021-10-22 22:00:35 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 540 bytes |
| コンパイル時間 | 4,295 ms |
| コンパイル使用メモリ | 250,512 KB |
| 最終ジャッジ日時 | 2025-01-25 03:37:38 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 15 WA * 11 |
ソースコード
#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;
if(N%2==1)f = true;
rep(i,N){
//if(a[i]==X)f ^= 1;
}
if(f)cout<<"Alice"<<endl;
else cout<<"Bob"<<endl;
}
return 0;
}
沙耶花