結果

問題 No.1716 Bonus Nim
ユーザー HydruHydru
提出日時 2021-10-22 23:58:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 728 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 150,284 KB
最終ジャッジ日時 2024-09-24 07:21:49
合計ジャッジ時間 6,299 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,344 KB
testcase_01 AC 40 ms
54,256 KB
testcase_02 AC 39 ms
53,416 KB
testcase_03 AC 38 ms
53,880 KB
testcase_04 AC 193 ms
121,904 KB
testcase_05 AC 216 ms
130,376 KB
testcase_06 AC 181 ms
135,944 KB
testcase_07 AC 195 ms
130,936 KB
testcase_08 AC 205 ms
119,956 KB
testcase_09 AC 156 ms
127,964 KB
testcase_10 AC 221 ms
142,608 KB
testcase_11 AC 213 ms
130,960 KB
testcase_12 AC 209 ms
129,540 KB
testcase_13 AC 235 ms
147,164 KB
testcase_14 AC 218 ms
129,972 KB
testcase_15 AC 728 ms
78,220 KB
testcase_16 AC 40 ms
54,792 KB
testcase_17 AC 39 ms
54,260 KB
testcase_18 AC 39 ms
54,324 KB
testcase_19 AC 39 ms
54,268 KB
testcase_20 AC 40 ms
54,100 KB
testcase_21 AC 39 ms
54,236 KB
testcase_22 AC 220 ms
146,292 KB
testcase_23 AC 145 ms
119,968 KB
testcase_24 AC 193 ms
150,284 KB
testcase_25 AC 181 ms
139,404 KB
testcase_26 AC 208 ms
136,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import exit
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
    
    x=0
    for a in A:
        x^=a
    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