結果

問題 No.1716 Bonus Nim
ユーザー mahiro72mahiro72
提出日時 2021-10-23 02:37:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 322 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 46,012 KB
最終ジャッジ日時 2024-09-24 13:11:58
合計ジャッジ時間 8,363 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 244 ms
30,476 KB
testcase_05 AC 255 ms
35,328 KB
testcase_06 AC 219 ms
32,040 KB
testcase_07 AC 249 ms
31,020 KB
testcase_08 AC 255 ms
35,204 KB
testcase_09 AC 189 ms
31,180 KB
testcase_10 AC 278 ms
39,596 KB
testcase_11 AC 275 ms
27,908 KB
testcase_12 AC 272 ms
30,580 KB
testcase_13 AC 288 ms
44,256 KB
testcase_14 AC 277 ms
32,048 KB
testcase_15 TLE -
testcase_16 AC 28 ms
10,496 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 29 ms
10,624 KB
testcase_19 AC 31 ms
10,624 KB
testcase_20 AC 28 ms
10,496 KB
testcase_21 AC 28 ms
10,624 KB
testcase_22 AC 257 ms
43,864 KB
testcase_23 AC 180 ms
31,592 KB
testcase_24 AC 217 ms
39,328 KB
testcase_25 AC 210 ms
42,096 KB
testcase_26 AC 251 ms
46,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
T = int(input())
for _ in range(T):
    N = int(input())
    A = list(map(int,input().split()))
    if N%2==1:
        print('Alice')
    else:
        c = Counter(A)
        odd = False
        for v in c.values():
            if v%2:odd=True;break
        print('Alice'if odd else 'Bob')
0