結果

問題 No.2103 ±1s Game
ユーザー 👑 Kazun
提出日時 2022-10-21 21:37:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 171 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 54,024 KB
最終ジャッジ日時 2024-07-01 06:15:20
合計ジャッジ時間 2,704 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13 WA * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    X,Y,K,P=map(int,input().split())
    return not (Y%2==0)^(P==1)

#==================================================
print("Alice" if solve() else "Bob")
0