結果

問題 No.1716 Bonus Nim
ユーザー noetherian_ringnoetherian_ring
提出日時 2021-10-22 22:43:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 799 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 149,212 KB
最終ジャッジ日時 2024-09-23 06:26:08
合計ジャッジ時間 5,570 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,368 KB
testcase_01 AC 43 ms
55,164 KB
testcase_02 AC 40 ms
54,780 KB
testcase_03 AC 40 ms
54,788 KB
testcase_04 AC 184 ms
125,220 KB
testcase_05 AC 206 ms
127,116 KB
testcase_06 AC 168 ms
131,980 KB
testcase_07 AC 178 ms
129,352 KB
testcase_08 AC 192 ms
127,436 KB
testcase_09 AC 148 ms
125,636 KB
testcase_10 AC 210 ms
144,724 KB
testcase_11 AC 198 ms
126,628 KB
testcase_12 AC 194 ms
126,984 KB
testcase_13 AC 215 ms
144,952 KB
testcase_14 AC 199 ms
125,620 KB
testcase_15 AC 243 ms
77,760 KB
testcase_16 AC 42 ms
54,388 KB
testcase_17 AC 42 ms
54,528 KB
testcase_18 AC 42 ms
54,100 KB
testcase_19 AC 41 ms
55,192 KB
testcase_20 AC 41 ms
54,936 KB
testcase_21 AC 41 ms
54,672 KB
testcase_22 AC 207 ms
144,264 KB
testcase_23 AC 132 ms
116,844 KB
testcase_24 AC 184 ms
149,212 KB
testcase_25 AC 169 ms
136,860 KB
testcase_26 AC 199 ms
139,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import os

sys.setrecursionlimit(100000)
is_local = "TERM_PROGRAM" in os.environ
input = sys.stdin.readline
INF = float('inf')
MOD = 998244353

def debug(*args, **kwargs):
    if is_local:
        print(*args, **kwargs)
def I(): return input().rstrip()
def IS(): return input().split()
def II(): return int(input())
def IIS(): return map(int, input().split())
def LIIS(): return list(map(int, input().split()))

def main():
    q = II()
    from collections import Counter

    for _ in range(q):
        n = II()
        va = LIIS()
        if len(va) % 2:
            print("Alice")
            continue

        cnt = Counter(va)
        if all(v % 2 == 0 for v in cnt.values()):
            print("Bob")
        else:
            print("Alice")

if __name__ == "__main__":
    main()
0