結果

問題 No.1716 Bonus Nim
ユーザー tassei903tassei903
提出日時 2021-10-22 22:23:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 786 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 81,748 KB
実行使用メモリ 167,672 KB
最終ジャッジ日時 2024-09-23 06:01:32
合計ジャッジ時間 6,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,108 KB
testcase_01 WA -
testcase_02 AC 42 ms
53,992 KB
testcase_03 WA -
testcase_04 AC 243 ms
122,512 KB
testcase_05 WA -
testcase_06 AC 191 ms
118,024 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 165 ms
128,168 KB
testcase_10 AC 262 ms
136,272 KB
testcase_11 AC 258 ms
135,632 KB
testcase_12 AC 252 ms
135,676 KB
testcase_13 AC 289 ms
161,752 KB
testcase_14 WA -
testcase_15 AC 324 ms
79,744 KB
testcase_16 AC 42 ms
53,812 KB
testcase_17 AC 41 ms
55,128 KB
testcase_18 AC 42 ms
54,264 KB
testcase_19 AC 42 ms
54,532 KB
testcase_20 AC 43 ms
54,576 KB
testcase_21 AC 42 ms
53,948 KB
testcase_22 WA -
testcase_23 AC 143 ms
119,692 KB
testcase_24 AC 222 ms
126,600 KB
testcase_25 AC 207 ms
144,520 KB
testcase_26 AC 267 ms
166,564 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])
    p = sum([1 for i in c if c[i]==1])
    q = sum([c[i]-1 for i in c if c[i]>=2])
    r = len([c[i]-1 for i in c if c[i]>=2])
    z = max(n//2-1-p-r,0)
    if q-z<=n//2-1:
        print("Alice")
    else:
        print("Bob")
0