結果
| 問題 | No.3112 Decrement or Mod Game |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-12-03 12:51:47 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 69 ms / 2,000 ms |
| + 919µs | |
| コード長 | 211 bytes |
| 記録 | |
| コンパイル時間 | 1,094 ms |
| コンパイル使用メモリ | 95,980 KB |
| 実行使用メモリ | 79,104 KB |
| 最終ジャッジ日時 | 2026-07-17 07:32:51 |
| 合計ジャッジ時間 | 7,946 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 65 |
ソースコード
A,B = map(int,input().split())
if A == 1 or B == 1:
print("Alice")
elif A == B:
print("Alice")
elif A+1 == B:
print("Alice")
elif A == B+1:
print("Bob")
elif A > B:
print("Alice")
elif A < B:
print("Bob")