結果
問題 | No.21 平均の差 |
ユーザー | toshiro_yanagi |
提出日時 | 2018-09-28 06:34:06 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 318 ms / 5,000 ms |
コード長 | 225 bytes |
コンパイル時間 | 11,836 ms |
コンパイル使用メモリ | 435,956 KB |
実行使用メモリ | 53,420 KB |
最終ジャッジ日時 | 2024-11-20 16:51:10 |
合計ジャッジ時間 | 15,203 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 310 ms
53,032 KB |
testcase_01 | AC | 317 ms
53,308 KB |
testcase_02 | AC | 315 ms
53,380 KB |
testcase_03 | AC | 314 ms
53,272 KB |
testcase_04 | AC | 315 ms
53,240 KB |
testcase_05 | AC | 313 ms
53,204 KB |
testcase_06 | AC | 314 ms
53,232 KB |
testcase_07 | AC | 318 ms
53,248 KB |
testcase_08 | AC | 314 ms
53,164 KB |
testcase_09 | AC | 312 ms
53,420 KB |
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used fun main(args: Array<String>) { ^ Main.kt:3:6: warning: variable 'K' is never used val K = readLine()!!.toInt() ^ Main.kt:12:17: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int println(a.max()!! - a.min()!!) ^ Main.kt:12:29: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int println(a.max()!! - a.min()!!) ^
ソースコード
fun main(args: Array<String>) { val N = readLine()!!.toInt() val K = readLine()!!.toInt() val a = Array(N) { 0 } a.forEachIndexed { i, _ -> val n = readLine()!!.toInt() a[i] = n } println(a.max()!! - a.min()!!) }