結果

問題 No.46 はじめのn歩
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-17 20:31:07
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 103 bytes
コンパイル時間 13,354 ms
コンパイル使用メモリ 427,904 KB
実行使用メモリ 54,524 KB
最終ジャッジ日時 2023-10-25 21:24:59
合計ジャッジ時間 14,711 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 291 ms
54,524 KB
testcase_01 WA -
testcase_02 AC 287 ms
54,524 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 286 ms
54,508 KB
testcase_07 WA -
testcase_08 AC 287 ms
54,524 KB
testcase_09 AC 288 ms
54,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){val(a,b)=readLine()!!.split(" ").map{it.toDouble()}
println(kotlin.math.floor(b/a).toInt())}
0