結果

問題 No.135 とりあえず1次元の問題
ユーザー minokasagominokasago
提出日時 2019-11-02 14:00:30
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 895 ms / 5,000 ms
コード長 203 bytes
コンパイル時間 12,216 ms
コンパイル使用メモリ 434,428 KB
実行使用メモリ 76,716 KB
最終ジャッジ日時 2024-09-14 23:12:18
合計ジャッジ時間 23,906 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 895 ms
76,700 KB
testcase_01 AC 325 ms
55,068 KB
testcase_02 AC 323 ms
55,320 KB
testcase_03 AC 319 ms
55,376 KB
testcase_04 AC 334 ms
55,272 KB
testcase_05 AC 331 ms
55,328 KB
testcase_06 AC 332 ms
55,196 KB
testcase_07 AC 332 ms
55,328 KB
testcase_08 AC 327 ms
55,104 KB
testcase_09 AC 332 ms
55,004 KB
testcase_10 AC 334 ms
55,252 KB
testcase_11 AC 327 ms
55,112 KB
testcase_12 AC 341 ms
55,340 KB
testcase_13 AC 331 ms
55,444 KB
testcase_14 AC 348 ms
55,612 KB
testcase_15 AC 342 ms
55,292 KB
testcase_16 AC 357 ms
55,576 KB
testcase_17 AC 354 ms
55,436 KB
testcase_18 AC 329 ms
55,284 KB
testcase_19 AC 350 ms
55,348 KB
testcase_20 AC 342 ms
55,508 KB
testcase_21 AC 561 ms
69,996 KB
testcase_22 AC 889 ms
76,716 KB
evil01.txt AC 735 ms
76,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:9: warning: variable 'N' is never used
    val N = readLine()!!.toInt()
        ^
Main.kt:4:77: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
    println(if (X.size < 2) 0 else (0..X.size-2).map { X[it+1]-X[it] }.min()!!)
                                                                            ^

ソースコード

diff #

fun main() {
    val N = readLine()!!.toInt()
    val X = readLine()!!.split(" ").map(String::toInt).sorted().distinct()
    println(if (X.size < 2) 0 else (0..X.size-2).map { X[it+1]-X[it] }.min()!!)
}
0