結果

問題 No.21 平均の差
ユーザー yo-kondoyo-kondo
提出日時 2019-01-03 13:46:19
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 320 ms / 5,000 ms
コード長 1,351 bytes
コンパイル時間 12,002 ms
コンパイル使用メモリ 438,068 KB
実行使用メモリ 54,068 KB
最終ジャッジ日時 2024-11-20 17:20:04
合計ジャッジ時間 16,388 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
54,060 KB
testcase_01 AC 317 ms
54,068 KB
testcase_02 AC 314 ms
53,896 KB
testcase_03 AC 318 ms
53,944 KB
testcase_04 AC 320 ms
54,056 KB
testcase_05 AC 315 ms
53,876 KB
testcase_06 AC 318 ms
53,972 KB
testcase_07 AC 319 ms
54,060 KB
testcase_08 AC 316 ms
54,064 KB
testcase_09 AC 317 ms
53,772 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:27:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

// No.21 平均の差
// https://yukicoder.me/problems/no/21

package no01.yukicoder.no21

/**
 * インプットデータ
 */
data class InputData(
    /**
     * 数字の数
     */
    val numCount: Int,
    /**
     * グループ
     */
    val group: Int,
    /**
     * 数字
     */
    val nums: List<Int>
)

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

fun average(input: List<String>): Int {
    val data = createInputData(input)

    val sortList = data.nums.sorted()
    return sortList.last() - sortList.first()
}

/**
 * 標準入力から取得した文字列をInputDataに変換して返します。
 */
fun createInputData(input: List<String>): InputData {

    val numCount = input[0].toInt()
    val group = input[1].toInt()
    val nums = mutableListOf<Int>()

    for ((i, v) in input.withIndex()) {
        if (i == 0 || i == 1) {
            continue
        }

        nums.add(v.toInt())
    }
    return InputData(numCount, group, nums)
}

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