結果

問題 No.46 はじめのn歩
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-17 20:31:22
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 340 ms / 5,000 ms
コード長 102 bytes
コンパイル時間 10,971 ms
コンパイル使用メモリ 436,084 KB
実行使用メモリ 55,796 KB
最終ジャッジ日時 2024-09-25 06:05:31
合計ジャッジ時間 15,298 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 340 ms
55,580 KB
testcase_01 AC 308 ms
55,364 KB
testcase_02 AC 314 ms
55,504 KB
testcase_03 AC 310 ms
55,796 KB
testcase_04 AC 311 ms
55,576 KB
testcase_05 AC 307 ms
55,684 KB
testcase_06 AC 305 ms
55,708 KB
testcase_07 AC 306 ms
55,660 KB
testcase_08 AC 306 ms
55,732 KB
testcase_09 AC 307 ms
55,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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