結果

問題 No.394 ハーフパイプ(1)
ユーザー komkomhkomkomh
提出日時 2019-06-10 08:21:43
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 371 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 11,707 ms
コンパイル使用メモリ 430,200 KB
実行使用メモリ 53,168 KB
最終ジャッジ日時 2024-11-20 18:53:30
合計ジャッジ時間 16,997 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 364 ms
53,164 KB
testcase_01 AC 367 ms
52,784 KB
testcase_02 AC 367 ms
52,900 KB
testcase_03 AC 371 ms
52,788 KB
testcase_04 AC 365 ms
52,784 KB
testcase_05 AC 368 ms
52,896 KB
testcase_06 AC 366 ms
53,104 KB
testcase_07 AC 367 ms
52,780 KB
testcase_08 AC 366 ms
53,168 KB
testcase_09 AC 363 ms
53,168 KB
testcase_10 AC 363 ms
52,780 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:23: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Float
    val ans = (S.sum()!! - S.min()!! - S.max()!!) / 4.0
                      ^
Main.kt:6:35: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Float
    val ans = (S.sum()!! - S.min()!! - S.max()!!) / 4.0
                                  ^
Main.kt:6:47: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Float
    val ans = (S.sum()!! - S.min()!! - S.max()!!) / 4.0
                                              ^

ソースコード

diff #

package yukicoder

fun main() {
    val S = readLine()!!.split(" ").map(String::toFloat)

    val ans = (S.sum()!! - S.min()!! - S.max()!!) / 4.0
    println("%.2f".format(ans))
}
0