結果

問題 No.1716 Bonus Nim
ユーザー zkou
提出日時 2021-09-25 12:06:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 177 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 134,756 KB
最終ジャッジ日時 2024-09-23 03:49:47
合計ジャッジ時間 5,177 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 1 WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

# 嘘

T = int(input())
for _ in range(T):
    N = int(input())
    As = list(map(int, input().split()))
    if N % 2 == 1:
        print("Alice")
    else:
        print("Bob")
0