結果

問題 No.46 はじめのn歩
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-17 20:31:22
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 296 ms / 5,000 ms
コード長 102 bytes
コンパイル時間 10,655 ms
コンパイル使用メモリ 438,256 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2023-10-25 21:25:17
合計ジャッジ時間 14,928 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
54,520 KB
testcase_01 AC 292 ms
54,512 KB
testcase_02 AC 296 ms
54,516 KB
testcase_03 AC 294 ms
54,528 KB
testcase_04 AC 294 ms
54,520 KB
testcase_05 AC 294 ms
54,528 KB
testcase_06 AC 292 ms
54,528 KB
testcase_07 AC 290 ms
54,528 KB
testcase_08 AC 290 ms
54,516 KB
testcase_09 AC 290 ms
54,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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