結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
59,976 KB
testcase_01 AC 324 ms
59,980 KB
testcase_02 AC 323 ms
60,024 KB
testcase_03 AC 325 ms
60,088 KB
testcase_04 AC 326 ms
59,980 KB
testcase_05 AC 324 ms
60,000 KB
testcase_06 AC 366 ms
60,088 KB
testcase_07 AC 329 ms
60,180 KB
testcase_08 AC 329 ms
59,948 KB
testcase_09 AC 332 ms
60,072 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