結果

問題 No.388 階段 (1)
ユーザー moritar
提出日時 2021-03-21 23:36:42
言語 Kotlin
(2.1.0)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.floor

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