結果

問題 No.1716 Bonus Nim
ユーザー ks2mks2m
提出日時 2021-10-22 21:40:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 921 ms / 2,000 ms
コード長 991 bytes
コンパイル時間 2,156 ms
コンパイル使用メモリ 78,788 KB
実行使用メモリ 73,808 KB
最終ジャッジ日時 2024-09-23 05:00:14
合計ジャッジ時間 17,564 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,284 KB
testcase_01 AC 54 ms
37,224 KB
testcase_02 AC 55 ms
37,224 KB
testcase_03 AC 54 ms
36,776 KB
testcase_04 AC 687 ms
60,660 KB
testcase_05 AC 735 ms
70,944 KB
testcase_06 AC 729 ms
65,624 KB
testcase_07 AC 859 ms
65,328 KB
testcase_08 AC 715 ms
64,388 KB
testcase_09 AC 764 ms
69,728 KB
testcase_10 AC 672 ms
68,876 KB
testcase_11 AC 785 ms
63,464 KB
testcase_12 AC 719 ms
70,396 KB
testcase_13 AC 921 ms
69,484 KB
testcase_14 AC 805 ms
62,392 KB
testcase_15 AC 616 ms
50,436 KB
testcase_16 AC 56 ms
37,224 KB
testcase_17 AC 57 ms
37,304 KB
testcase_18 AC 55 ms
36,976 KB
testcase_19 AC 55 ms
37,228 KB
testcase_20 AC 55 ms
36,908 KB
testcase_21 AC 57 ms
37,220 KB
testcase_22 AC 854 ms
68,768 KB
testcase_23 AC 847 ms
68,568 KB
testcase_24 AC 830 ms
73,808 KB
testcase_25 AC 829 ms
68,052 KB
testcase_26 AC 839 ms
68,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.HashMap;
import java.util.Map;

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]);
			}

			Map<Integer, Integer> map = new HashMap<>();
			for (int i = 0; i < n; i++) {
				map.put(a[i], map.getOrDefault(a[i], 0) + 1);
			}
			boolean flg = true;
			for (int v : map.values()) {
				if (v % 2 == 1) {
					flg = false;
					break;
				}
			}
			if (n % 2 == 0 && flg) {
				pw.println("Bob");
			} else {
				pw.println("Alice");
			}
		}
		br.close();
		pw.flush();
	}
}
0