結果
問題 | No.21 平均の差 |
ユーザー | バカらっく |
提出日時 | 2019-09-02 00:05:26 |
言語 | Kotlin (2.1.0) |
結果 |
AC
|
実行時間 | 321 ms / 5,000 ms |
コード長 | 294 bytes |
コンパイル時間 | 13,985 ms |
コンパイル使用メモリ | 434,888 KB |
実行使用メモリ | 56,768 KB |
最終ジャッジ日時 | 2024-11-30 01:03:15 |
合計ジャッジ時間 | 18,531 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 318 ms
56,504 KB |
testcase_01 | AC | 317 ms
56,516 KB |
testcase_02 | AC | 314 ms
56,500 KB |
testcase_03 | AC | 321 ms
56,516 KB |
testcase_04 | AC | 318 ms
56,592 KB |
testcase_05 | AC | 317 ms
56,768 KB |
testcase_06 | AC | 317 ms
56,616 KB |
testcase_07 | AC | 315 ms
56,528 KB |
testcase_08 | AC | 316 ms
56,512 KB |
testcase_09 | AC | 316 ms
56,572 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()!! ^
ソースコード
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) }