結果
| 問題 | No.2103 ±1s Game |
| コンテスト | |
| ユーザー |
👑 Kazun
|
| 提出日時 | 2022-10-21 21:37:42 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 171 bytes |
| 記録 | |
| コンパイル時間 | 235 ms |
| コンパイル使用メモリ | 95,848 KB |
| 実行使用メモリ | 79,104 KB |
| 最終ジャッジ日時 | 2026-08-03 02:32:11 |
| 合計ジャッジ時間 | 4,193 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 WA * 21 |
ソースコード
def solve():
X,Y,K,P=map(int,input().split())
return not (Y%2==0)^(P==1)
#==================================================
print("Alice" if solve() else "Bob")
Kazun