結果

問題 No.46 はじめのn歩
ユーザー yo-kondoyo-kondo
提出日時 2019-01-03 18:35:43
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 319 ms / 5,000 ms
コード長 1,202 bytes
コンパイル時間 12,334 ms
コンパイル使用メモリ 435,188 KB
実行使用メモリ 56,844 KB
最終ジャッジ日時 2024-04-30 19:48:22
合計ジャッジ時間 16,303 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
56,800 KB
testcase_01 AC 314 ms
56,544 KB
testcase_02 AC 316 ms
56,688 KB
testcase_03 AC 317 ms
56,688 KB
testcase_04 AC 319 ms
56,684 KB
testcase_05 AC 314 ms
56,716 KB
testcase_06 AC 314 ms
56,720 KB
testcase_07 AC 314 ms
56,800 KB
testcase_08 AC 316 ms
56,844 KB
testcase_09 AC 315 ms
56,812 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:19:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

// No.46 はじめのn歩
// https://yukicoder.me/problems/no/46

package no01.yukicoder.no46

import kotlin.math.ceil

/** インプットデータ */
data class InputData(
    /** 1歩で歩ける距離 */
    val walk: Double,
    /** 区間の距離 */
    val section: Double
)

/**
 * エントリポイント
 */
fun main(args: Array<String>) {
    val input = getStandardInput()
    println(stepCount(input))
}

/**
 * 最小で何歩歩くかを返します。
 */
fun stepCount(input: List<String>): Int {
    val data = createInputData(input)

    // 小数点を含めた割り算をしたあとに、切り上げ
    return ceil(data.section / data.walk).toInt()
}

/**
 * 標準入力から取得した文字列をInputDataに変換して返します。
 */
fun createInputData(input: List<String>): InputData {
    val sp = input[0].split(" ")
    return InputData(
        sp[0].toDouble(),
        sp[1].toDouble()
    )
}

/**
 * 標準入力から文字列を全て取得します。
 */
fun getStandardInput(): List<String> {
    val lines = mutableListOf<String>()
    var s = readLine()
    while (s != null) {
        lines.add(s)
        s = readLine()
    }
    return lines
}
0