結果

問題 No.3112 Decrement or Mod Game
ユーザー Fogrex
提出日時 2025-04-19 12:16:25
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 141 bytes
コンパイル時間 601 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 67,216 KB
最終ジャッジ日時 2025-04-19 12:16:32
合計ジャッジ時間 6,769 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 65
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input())

if A == 1:
	print("Alice")
	exit()
if A == B:
	print("Bob")
	exit()
if A > B:
	print("Alice")
	exit()
print("Bob")
0