結果

問題 No.1716 Bonus Nim
ユーザー ks2mks2m
提出日時 2021-10-22 21:36:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 759 bytes
コンパイル時間 2,419 ms
コンパイル使用メモリ 74,884 KB
実行使用メモリ 74,484 KB
最終ジャッジ日時 2024-09-23 04:53:18
合計ジャッジ時間 13,360 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,456 KB
testcase_01 AC 54 ms
50,048 KB
testcase_02 AC 54 ms
50,180 KB
testcase_03 AC 53 ms
50,396 KB
testcase_04 AC 486 ms
74,484 KB
testcase_05 AC 484 ms
62,792 KB
testcase_06 AC 442 ms
59,920 KB
testcase_07 AC 460 ms
62,008 KB
testcase_08 AC 461 ms
62,792 KB
testcase_09 AC 466 ms
65,264 KB
testcase_10 AC 462 ms
62,392 KB
testcase_11 AC 480 ms
65,044 KB
testcase_12 AC 514 ms
58,408 KB
testcase_13 AC 508 ms
62,580 KB
testcase_14 AC 476 ms
59,808 KB
testcase_15 AC 498 ms
51,908 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int t = Integer.parseInt(br.readLine());
		PrintWriter pw = new PrintWriter(System.out);
		for (int z = 0; z < t; z++) {
			int n = Integer.parseInt(br.readLine());
			String[] sa = br.readLine().split(" ");
			int[] a = new int[n];
			for (int i = 0; i < n; i++) {
				a[i] = Integer.parseInt(sa[i]);
			}

			int x = 0;
			for (int i = 0; i < n; i++) {
				x ^= a[i];
			}
			if (n % 2 == 0 && x == 0) {
				pw.println("Bob");
			} else {
				pw.println("Alice");
			}
		}
		br.close();
		pw.flush();
	}
}
0