結果

問題 No.21 平均の差
ユーザー バカらっくバカらっく
提出日時 2019-09-02 00:05:26
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 284 ms / 5,000 ms
コード長 294 bytes
コンパイル時間 11,029 ms
コンパイル使用メモリ 437,012 KB
実行使用メモリ 50,880 KB
最終ジャッジ日時 2024-05-07 09:27:09
合計ジャッジ時間 15,258 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 284 ms
50,780 KB
testcase_01 AC 264 ms
50,620 KB
testcase_02 AC 267 ms
50,724 KB
testcase_03 AC 270 ms
50,768 KB
testcase_04 AC 280 ms
50,716 KB
testcase_05 AC 270 ms
50,880 KB
testcase_06 AC 269 ms
50,748 KB
testcase_07 AC 264 ms
50,636 KB
testcase_08 AC 265 ms
50,708 KB
testcase_09 AC 268 ms
50,620 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:3:9: warning: variable 'groupCount' is never used
    val groupCount = readLine()!!.toInt()
        ^
Main.kt:10:26: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
    val ans = items.max()!! - items.min()!!
                         ^
Main.kt:10:42: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
    val ans = items.max()!! - items.min()!!
                                         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val inputCount = readLine()!!.toInt()
    val groupCount = readLine()!!.toInt()
    val items = mutableListOf<Int>()

    (1..inputCount).forEach {
        items.add(readLine()!!.toInt())
    }

    val ans = items.max()!! - items.min()!!
    println(ans)
}
0