結果

問題 No.2813 Cookie
ユーザー ニックネーム
提出日時 2024-07-19 22:17:31
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 147 bytes
コンパイル時間 717 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-07-19 22:18:02
合計ジャッジ時間 4,904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 5 WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    n = int(input()); x = 0
    for v in map(int,input().split()): x ^= max(v-1,1)
    print("Alice" if x else "Bob")
0