結果

問題 No.1716 Bonus Nim
ユーザー HydruHydru
提出日時 2021-10-22 23:59:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 739 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 150,304 KB
最終ジャッジ日時 2024-09-24 07:25:18
合計ジャッジ時間 6,221 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,360 KB
testcase_01 AC 38 ms
53,820 KB
testcase_02 AC 38 ms
54,396 KB
testcase_03 AC 37 ms
54,308 KB
testcase_04 AC 193 ms
126,712 KB
testcase_05 AC 214 ms
130,500 KB
testcase_06 AC 176 ms
134,632 KB
testcase_07 AC 188 ms
130,204 KB
testcase_08 AC 198 ms
127,944 KB
testcase_09 AC 155 ms
127,980 KB
testcase_10 AC 222 ms
146,548 KB
testcase_11 AC 213 ms
127,896 KB
testcase_12 AC 206 ms
128,444 KB
testcase_13 AC 231 ms
147,836 KB
testcase_14 AC 211 ms
127,856 KB
testcase_15 AC 739 ms
77,824 KB
testcase_16 AC 38 ms
53,992 KB
testcase_17 AC 37 ms
54,184 KB
testcase_18 AC 38 ms
54,676 KB
testcase_19 AC 38 ms
54,100 KB
testcase_20 AC 37 ms
54,892 KB
testcase_21 AC 38 ms
54,372 KB
testcase_22 AC 212 ms
146,000 KB
testcase_23 AC 141 ms
119,344 KB
testcase_24 AC 186 ms
150,304 KB
testcase_25 AC 176 ms
140,184 KB
testcase_26 AC 203 ms
143,096 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")
        continue
    cntA=Counter(A)
    flag=1
    for x in cntA:
        if cntA[x]%2==1:
            flag=0
            break
    if flag:
        print("Bob")
    else:
        print("Alice")
0