結果

問題 No.388 階段 (1)
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-17 20:43:44
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 314 ms / 2,000 ms
コード長 105 bytes
コンパイル時間 12,935 ms
コンパイル使用メモリ 442,648 KB
実行使用メモリ 54,524 KB
最終ジャッジ日時 2023-10-25 21:28:32
合計ジャッジ時間 19,058 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
54,524 KB
testcase_01 AC 306 ms
54,524 KB
testcase_02 AC 307 ms
54,524 KB
testcase_03 AC 305 ms
54,512 KB
testcase_04 AC 308 ms
54,516 KB
testcase_05 AC 307 ms
54,524 KB
testcase_06 AC 309 ms
54,520 KB
testcase_07 AC 311 ms
54,520 KB
testcase_08 AC 311 ms
54,520 KB
testcase_09 AC 310 ms
54,520 KB
testcase_10 AC 309 ms
54,520 KB
testcase_11 AC 310 ms
54,524 KB
testcase_12 AC 314 ms
54,520 KB
testcase_13 AC 310 ms
54,520 KB
testcase_14 AC 307 ms
54,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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