結果

問題 No.3112 Decrement or Mod Game
ユーザー rururun
提出日時 2025-04-21 13:55:17
言語 Swift
(6.0.3)
結果
WA  
実行時間 -
コード長 167 bytes
コンパイル時間 10,455 ms
コンパイル使用メモリ 129,528 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2025-04-21 13:55:30
合計ジャッジ時間 13,151 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 55 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

let ab = readLine()!.split(separator: " ").map{Int($0)!}
let (a,b) = (ab[0],ab[1])
if a >= b{
	print("Alice")
}else if a == 1{
	print("Alice")	
}else{
	print("Bob")	
}
0