結果

問題 No.1716 Bonus Nim
ユーザー square1001square1001
提出日時 2021-10-22 23:04:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 387 bytes
コンパイル時間 648 ms
コンパイル使用メモリ 76,924 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-23 06:59:27
合計ジャッジ時間 5,780 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 200 ms
5,376 KB
testcase_05 AC 200 ms
5,376 KB
testcase_06 AC 201 ms
5,376 KB
testcase_07 AC 200 ms
5,376 KB
testcase_08 AC 199 ms
5,376 KB
testcase_09 AC 200 ms
5,376 KB
testcase_10 AC 201 ms
5,376 KB
testcase_11 AC 200 ms
5,376 KB
testcase_12 AC 200 ms
5,376 KB
testcase_13 AC 200 ms
5,376 KB
testcase_14 AC 200 ms
5,376 KB
testcase_15 AC 357 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 200 ms
5,376 KB
testcase_23 AC 202 ms
5,376 KB
testcase_24 AC 199 ms
5,376 KB
testcase_25 WA -
testcase_26 AC 200 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <queue>
#include <vector>
#include <iostream>
#include <algorithm>
#include <functional>
using namespace std;
int main() {
	int Q;
	cin >> Q;
	while (Q--) {
		int N;
		cin >> N;
		vector<int> A(N);
		for (int i = 0; i < N; ++i) {
			cin >> A[i];
		}
		int g = 0;
		for (int i = 0; i < N; ++i) {
			g ^= A[i] + 1;
		}
		cout << (g != 0 ? "Alice" : "Bob") << endl;
	}
	return 0;
}
0