結果

問題 No.1716 Bonus Nim
ユーザー tassei903tassei903
提出日時 2021-10-25 09:09:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 712 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 151,572 KB
最終ジャッジ日時 2024-10-02 22:23:21
合計ジャッジ時間 5,973 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,632 KB
testcase_01 AC 45 ms
53,376 KB
testcase_02 AC 45 ms
53,632 KB
testcase_03 AC 45 ms
53,760 KB
testcase_04 AC 198 ms
124,928 KB
testcase_05 AC 236 ms
131,048 KB
testcase_06 AC 188 ms
135,168 KB
testcase_07 AC 201 ms
133,360 KB
testcase_08 AC 212 ms
125,824 KB
testcase_09 AC 168 ms
128,124 KB
testcase_10 AC 256 ms
148,664 KB
testcase_11 AC 239 ms
132,852 KB
testcase_12 AC 222 ms
130,560 KB
testcase_13 AC 253 ms
150,124 KB
testcase_14 AC 242 ms
130,432 KB
testcase_15 AC 251 ms
79,232 KB
testcase_16 AC 44 ms
53,376 KB
testcase_17 AC 44 ms
54,144 KB
testcase_18 AC 45 ms
53,760 KB
testcase_19 AC 45 ms
53,632 KB
testcase_20 AC 46 ms
53,888 KB
testcase_21 AC 44 ms
53,504 KB
testcase_22 AC 225 ms
148,648 KB
testcase_23 AC 149 ms
119,244 KB
testcase_24 AC 203 ms
151,572 KB
testcase_25 AC 183 ms
140,544 KB
testcase_26 AC 219 ms
144,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
t = ni()
from collections import deque,Counter

for _ in range(t):
    n = ni()
    a = na()
    if n%2:
        print("Alice")
        continue
    c = Counter([i for i in a])
    #print(c)
    b = 1
    for j in c:
        if c[j]%2:
            print("Alice")
            b = 0
            break
    if b:
        print("Bob")
0