結果

問題 No.1716 Bonus Nim
ユーザー ああいいああいい
提出日時 2022-03-16 20:35:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 688 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 151,184 KB
最終ジャッジ日時 2024-09-24 23:00:33
合計ジャッジ時間 5,818 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,632 KB
testcase_01 AC 41 ms
53,504 KB
testcase_02 AC 42 ms
53,760 KB
testcase_03 AC 41 ms
53,760 KB
testcase_04 AC 163 ms
114,828 KB
testcase_05 AC 143 ms
117,304 KB
testcase_06 AC 133 ms
113,924 KB
testcase_07 AC 170 ms
117,632 KB
testcase_08 AC 172 ms
118,972 KB
testcase_09 AC 161 ms
128,348 KB
testcase_10 AC 210 ms
147,036 KB
testcase_11 AC 199 ms
126,456 KB
testcase_12 AC 206 ms
127,776 KB
testcase_13 AC 187 ms
131,304 KB
testcase_14 AC 206 ms
123,628 KB
testcase_15 AC 688 ms
79,608 KB
testcase_16 AC 43 ms
53,504 KB
testcase_17 AC 41 ms
53,760 KB
testcase_18 AC 42 ms
53,964 KB
testcase_19 AC 41 ms
53,632 KB
testcase_20 AC 43 ms
53,376 KB
testcase_21 AC 43 ms
53,760 KB
testcase_22 AC 205 ms
132,980 KB
testcase_23 AC 153 ms
119,816 KB
testcase_24 AC 205 ms
151,184 KB
testcase_25 AC 197 ms
138,836 KB
testcase_26 AC 219 ms
133,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
from collections import defaultdict
for _ in range(T):
    N = int(input())
    a = list(map(int,input().split()))
    if N % 2 == 1:
        print('Alice')
        continue
    S = 0
    for i in a:
        S ^= i
    if S != 0:
        print("Alice")
        continue
    d = defaultdict(int)
    for i in a:
        d[i] += 1
    flag = False
    for v in d.values():
        if v % 2 == 1:
            print("Alice")
            flag = True
            break
    if flag == False:
        print("Bob")
0