結果

問題 No.1716 Bonus Nim
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-10-23 13:01:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 685 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 81,720 KB
実行使用メモリ 147,040 KB
最終ジャッジ日時 2024-09-25 04:02:55
合計ジャッジ時間 6,662 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,644 KB
testcase_01 AC 41 ms
54,404 KB
testcase_02 AC 42 ms
53,800 KB
testcase_03 AC 41 ms
53,716 KB
testcase_04 AC 209 ms
119,316 KB
testcase_05 AC 226 ms
130,144 KB
testcase_06 AC 194 ms
135,760 KB
testcase_07 AC 216 ms
132,512 KB
testcase_08 AC 225 ms
132,696 KB
testcase_09 AC 161 ms
128,092 KB
testcase_10 AC 233 ms
142,124 KB
testcase_11 AC 234 ms
134,168 KB
testcase_12 AC 224 ms
128,912 KB
testcase_13 AC 262 ms
146,920 KB
testcase_14 AC 238 ms
135,212 KB
testcase_15 AC 685 ms
78,448 KB
testcase_16 AC 41 ms
54,668 KB
testcase_17 AC 41 ms
55,152 KB
testcase_18 AC 41 ms
53,376 KB
testcase_19 AC 42 ms
54,180 KB
testcase_20 AC 44 ms
55,112 KB
testcase_21 AC 45 ms
54,808 KB
testcase_22 AC 275 ms
143,204 KB
testcase_23 AC 152 ms
120,096 KB
testcase_24 AC 211 ms
147,040 KB
testcase_25 AC 199 ms
138,700 KB
testcase_26 AC 227 ms
133,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
t = int(input())
for _ in range(t):
    n = int(input())
    a = list(map(int,input().split()))
    if n & 1:
        print("Alice")
    else:
        d = defaultdict(int)
        for i in range(n):
            d[a[i]] += 1
        ans = "Bob"
        for k in d.keys():
            if d[k] % 2 != 0:
                ans = "Alice"
        print(ans)
0