結果

問題 No.1716 Bonus Nim
ユーザー puznekopuzneko
提出日時 2021-11-15 23:17:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 239,276 KB
最終ジャッジ日時 2024-12-15 08:00:51
合計ジャッジ時間 6,219 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,480 KB
testcase_01 AC 33 ms
52,096 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 241 ms
171,308 KB
testcase_05 AC 243 ms
185,528 KB
testcase_06 AC 222 ms
167,476 KB
testcase_07 AC 229 ms
179,244 KB
testcase_08 AC 230 ms
167,516 KB
testcase_09 AC 172 ms
160,428 KB
testcase_10 AC 237 ms
168,436 KB
testcase_11 AC 243 ms
179,504 KB
testcase_12 AC 231 ms
169,264 KB
testcase_13 AC 272 ms
215,604 KB
testcase_14 AC 256 ms
186,604 KB
testcase_15 AC 218 ms
152,752 KB
testcase_16 AC 34 ms
52,096 KB
testcase_17 AC 34 ms
52,224 KB
testcase_18 AC 34 ms
52,096 KB
testcase_19 AC 35 ms
51,968 KB
testcase_20 AC 35 ms
51,840 KB
testcase_21 AC 33 ms
51,584 KB
testcase_22 AC 269 ms
228,788 KB
testcase_23 AC 159 ms
154,052 KB
testcase_24 AC 215 ms
172,728 KB
testcase_25 AC 222 ms
213,740 KB
testcase_26 AC 279 ms
239,276 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