結果

問題 No.1716 Bonus Nim
ユーザー puznekopuzneko
提出日時 2021-11-15 23:17:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 239,416 KB
最終ジャッジ日時 2024-05-09 00:02:43
合計ジャッジ時間 7,178 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 264 ms
171,572 KB
testcase_05 AC 272 ms
184,936 KB
testcase_06 AC 237 ms
167,360 KB
testcase_07 AC 256 ms
178,992 KB
testcase_08 AC 265 ms
167,148 KB
testcase_09 AC 198 ms
160,336 KB
testcase_10 AC 272 ms
168,044 KB
testcase_11 AC 280 ms
179,736 KB
testcase_12 AC 266 ms
169,272 KB
testcase_13 AC 319 ms
215,676 KB
testcase_14 AC 296 ms
186,616 KB
testcase_15 AC 250 ms
152,644 KB
testcase_16 AC 38 ms
51,968 KB
testcase_17 AC 37 ms
52,096 KB
testcase_18 AC 37 ms
52,096 KB
testcase_19 AC 37 ms
51,840 KB
testcase_20 AC 38 ms
52,300 KB
testcase_21 AC 37 ms
52,224 KB
testcase_22 AC 315 ms
228,272 KB
testcase_23 AC 185 ms
153,500 KB
testcase_24 AC 243 ms
172,556 KB
testcase_25 AC 262 ms
213,636 KB
testcase_26 AC 324 ms
239,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

t, *indata = map(int, stdin.read().split())
offset = 0
for _ in range(t):
    n = indata[offset]
    offset += 1
    if n % 2 == 1:
        print("Alice")
        offset += n
        continue
    d = dict()
    appear = set()
    for i in range(n):
        a = indata[offset+i]
        if a in appear:
            d[a] += 1
        else:
            d[a] = 1
            appear.add(a)
    offset += n
    check = True
    for i in appear:
        if d[i] % 2 == 1:
            check = False
            break
    if check:
        print("Bob")
    else:
        print("Alice")
0