結果

問題 No.46 はじめのn歩
ユーザー moritarmoritar
提出日時 2021-03-21 23:33:25
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 296 ms / 5,000 ms
コード長 184 bytes
コンパイル時間 12,209 ms
コンパイル使用メモリ 428,428 KB
実行使用メモリ 55,528 KB
最終ジャッジ日時 2024-11-22 18:46:04
合計ジャッジ時間 16,058 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 288 ms
55,248 KB
testcase_01 AC 296 ms
55,528 KB
testcase_02 AC 286 ms
55,164 KB
testcase_03 AC 279 ms
55,148 KB
testcase_04 AC 277 ms
55,044 KB
testcase_05 AC 286 ms
55,028 KB
testcase_06 AC 284 ms
55,428 KB
testcase_07 AC 289 ms
55,124 KB
testcase_08 AC 295 ms
55,344 KB
testcase_09 AC 293 ms
55,388 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import kotlin.math.ceil

fun main(args: Array<String>) {
    readLine()!!.split(" ").map {it.toInt()}.let {
        println(ceil((it[1].toDouble() / it[0].toDouble())).toInt())
    }
}
0