結果

問題 No.388 階段 (1)
ユーザー moritarmoritar
提出日時 2021-03-21 23:36:42
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 10,127 ms
コンパイル使用メモリ 430,724 KB
実行使用メモリ 51,616 KB
最終ジャッジ日時 2024-11-22 18:50:37
合計ジャッジ時間 15,932 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
51,616 KB
testcase_01 AC 302 ms
51,480 KB
testcase_02 AC 301 ms
51,228 KB
testcase_03 AC 298 ms
51,300 KB
testcase_04 AC 295 ms
51,324 KB
testcase_05 AC 301 ms
51,464 KB
testcase_06 AC 302 ms
51,608 KB
testcase_07 AC 303 ms
51,612 KB
testcase_08 AC 303 ms
51,556 KB
testcase_09 AC 302 ms
51,400 KB
testcase_10 AC 297 ms
51,408 KB
testcase_11 AC 299 ms
51,456 KB
testcase_12 AC 299 ms
51,536 KB
testcase_13 AC 299 ms
51,604 KB
testcase_14 AC 301 ms
51,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.floor

fun main() {
    readLine()!!.split(" ").map {it.toInt()}.let {
        println(floor((it[0].toDouble() / it[1].toDouble())).toInt() + 1)
    }
}
0