結果

問題 No.716 距離
ユーザー komkomhkomkomh
提出日時 2019-06-11 13:16:04
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 13,270 ms
コンパイル使用メモリ 433,804 KB
実行使用メモリ 52,616 KB
最終ジャッジ日時 2024-11-20 18:54:48
合計ジャッジ時間 27,393 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 366 ms
52,352 KB
testcase_01 AC 352 ms
52,324 KB
testcase_02 AC 356 ms
52,280 KB
testcase_03 AC 355 ms
52,540 KB
testcase_04 AC 356 ms
52,540 KB
testcase_05 AC 361 ms
52,560 KB
testcase_06 AC 361 ms
52,320 KB
testcase_07 AC 325 ms
52,216 KB
testcase_08 AC 326 ms
51,964 KB
testcase_09 AC 327 ms
52,028 KB
testcase_10 AC 365 ms
52,228 KB
testcase_11 AC 343 ms
52,136 KB
testcase_12 AC 358 ms
52,216 KB
testcase_13 AC 350 ms
52,492 KB
testcase_14 AC 324 ms
52,224 KB
testcase_15 AC 359 ms
52,616 KB
testcase_16 AC 344 ms
52,168 KB
testcase_17 AC 357 ms
52,336 KB
testcase_18 AC 333 ms
52,036 KB
testcase_19 AC 342 ms
52,256 KB
testcase_20 AC 325 ms
52,148 KB
testcase_21 AC 330 ms
52,008 KB
testcase_22 AC 338 ms
52,328 KB
testcase_23 AC 331 ms
52,000 KB
testcase_24 AC 348 ms
52,244 KB
testcase_25 AC 348 ms
52,032 KB
testcase_26 AC 350 ms
52,092 KB
testcase_27 AC 346 ms
52,216 KB
testcase_28 AC 338 ms
52,140 KB
testcase_29 AC 349 ms
52,312 KB
testcase_30 AC 346 ms
52,188 KB
testcase_31 AC 353 ms
52,464 KB
testcase_32 AC 350 ms
52,468 KB
testcase_33 AC 354 ms
52,460 KB
testcase_34 AC 339 ms
52,168 KB
testcase_35 AC 326 ms
52,128 KB
testcase_36 AC 338 ms
52,328 KB
testcase_37 AC 331 ms
52,256 KB
testcase_38 AC 339 ms
52,088 KB
testcase_39 AC 348 ms
52,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:4:9: warning: variable 'N' is never used
    val N = readLine()!!.toInt()
        ^
Main.kt:8:22: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
    val max = A.max()!! - A.min()!!
                     ^
Main.kt:8:34: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
    val max = A.max()!! - A.min()!!
                                 ^

ソースコード

diff #

package yukicoder

fun main() {
    val N = readLine()!!.toInt()
    val A = readLine()!!.split(" ").map(String::toInt)

    val min = (1 until A.size).map { A[it] - A[it - 1] }.min()
    val max = A.max()!! - A.min()!!

    println(min)
    println(max)
}
0