結果

問題 No.2813 Cookie
ユーザー ニックネーム
提出日時 2024-07-19 22:26:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 145 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-07-19 22:26:37
合計ジャッジ時間 4,496 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)
    print("Alice" if x else "Bob")
0