結果

問題 No.1716 Bonus Nim
ユーザー hir355hir355
提出日時 2021-10-22 22:31:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 774 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 81,744 KB
実行使用メモリ 170,296 KB
最終ジャッジ日時 2024-09-23 06:12:47
合計ジャッジ時間 6,671 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,728 KB
testcase_01 AC 41 ms
53,644 KB
testcase_02 AC 41 ms
53,732 KB
testcase_03 AC 41 ms
54,016 KB
testcase_04 AC 196 ms
121,616 KB
testcase_05 AC 212 ms
131,684 KB
testcase_06 AC 203 ms
134,804 KB
testcase_07 AC 218 ms
136,676 KB
testcase_08 AC 204 ms
123,052 KB
testcase_09 AC 208 ms
133,288 KB
testcase_10 AC 215 ms
146,784 KB
testcase_11 AC 208 ms
127,924 KB
testcase_12 AC 204 ms
128,116 KB
testcase_13 AC 222 ms
145,884 KB
testcase_14 AC 210 ms
128,824 KB
testcase_15 AC 774 ms
77,344 KB
testcase_16 AC 43 ms
54,192 KB
testcase_17 AC 43 ms
54,468 KB
testcase_18 AC 42 ms
54,004 KB
testcase_19 AC 43 ms
54,388 KB
testcase_20 AC 42 ms
53,992 KB
testcase_21 AC 41 ms
55,124 KB
testcase_22 AC 218 ms
145,764 KB
testcase_23 AC 223 ms
146,560 KB
testcase_24 AC 222 ms
170,296 KB
testcase_25 AC 239 ms
166,012 KB
testcase_26 AC 231 ms
140,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
t = int(input())
for _ in range(t):
    n = int(input())
    a = list(map(int, input().split()))
    c = Counter(a)
    for v in c.values():
        if v % 2 == 1:
            print('Alice')
            break
    else:
        print('Bob')
0