結果

問題 No.1506 Unbalanced Pocky Game
ユーザー 👑 KazunKazun
提出日時 2021-05-14 22:13:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 117 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 104,868 KB
最終ジャッジ日時 2024-10-02 01:34:13
合計ジャッジ時間 6,628 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 36 WA * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))

X=0
for a in A:
    if a!=1: X+=1

print("Bob" if X%2 else "Alice")
0