結果

問題 No.3112 Decrement or Mod Game
ユーザー tomo8
提出日時 2025-04-18 23:53:30
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 83 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 67,896 KB
最終ジャッジ日時 2025-04-18 23:53:36
合計ジャッジ時間 5,688 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 RE * 2
other AC * 20 WA * 10 RE * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = list(map(int, input().split()))
if a >= b:
	print("Alice")
else:
	print(Bob)
0