結果

問題 No.46 はじめのn歩
ユーザー yo-kondoyo-kondo
提出日時 2018-03-24 19:19:26
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 318 ms / 5,000 ms
コード長 619 bytes
コンパイル時間 10,395 ms
コンパイル使用メモリ 432,784 KB
実行使用メモリ 57,160 KB
最終ジャッジ日時 2024-11-20 14:35:41
合計ジャッジ時間 14,391 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 318 ms
57,136 KB
testcase_01 AC 309 ms
57,048 KB
testcase_02 AC 305 ms
57,024 KB
testcase_03 AC 300 ms
57,016 KB
testcase_04 AC 308 ms
57,140 KB
testcase_05 AC 318 ms
57,036 KB
testcase_06 AC 317 ms
57,136 KB
testcase_07 AC 309 ms
57,160 KB
testcase_08 AC 314 ms
57,132 KB
testcase_09 AC 314 ms
56,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:9:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package yukicoder.no46

import kotlin.math.ceil

/**
 * エントリポイント
 * @param args コマンドライン引数
 */
fun main(args: Array<String>) {
    val in1 = readLine()
    println(stepCount(in1))
}

/**
 * 最小で何歩歩くかを返す。
 * @param stepAndDistance 歩ける歩数と、歩く距離
 */
fun stepCount(stepAndDistance: String?): String {
    if (stepAndDistance == null) {
        return ""
    }

    val sp = stepAndDistance.split(" ").map { it.toDouble() }
    // 小数点を含めた割り算をしたあとに、切り上げ
    return ceil(sp[1] / sp[0]).toInt().toString()
}
0