結果

問題 No.716 距離
ユーザー バカらっくバカらっく
提出日時 2022-02-14 10:37:23
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 9,475 ms
コンパイル使用メモリ 434,976 KB
実行使用メモリ 55,608 KB
最終ジャッジ日時 2024-06-29 06:09:18
合計ジャッジ時間 23,172 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
55,316 KB
testcase_01 AC 311 ms
55,420 KB
testcase_02 AC 307 ms
55,408 KB
testcase_03 AC 313 ms
55,508 KB
testcase_04 AC 311 ms
55,416 KB
testcase_05 AC 309 ms
55,316 KB
testcase_06 AC 315 ms
55,448 KB
testcase_07 AC 299 ms
54,956 KB
testcase_08 AC 291 ms
55,016 KB
testcase_09 AC 283 ms
51,636 KB
testcase_10 AC 326 ms
55,520 KB
testcase_11 AC 298 ms
55,148 KB
testcase_12 AC 320 ms
55,456 KB
testcase_13 AC 315 ms
55,324 KB
testcase_14 AC 283 ms
55,132 KB
testcase_15 AC 304 ms
55,416 KB
testcase_16 AC 292 ms
55,376 KB
testcase_17 AC 304 ms
55,608 KB
testcase_18 AC 291 ms
55,252 KB
testcase_19 AC 318 ms
55,224 KB
testcase_20 AC 290 ms
54,996 KB
testcase_21 AC 297 ms
55,260 KB
testcase_22 AC 299 ms
55,188 KB
testcase_23 AC 300 ms
55,084 KB
testcase_24 AC 302 ms
55,496 KB
testcase_25 AC 298 ms
55,168 KB
testcase_26 AC 295 ms
55,276 KB
testcase_27 AC 304 ms
55,424 KB
testcase_28 AC 283 ms
55,020 KB
testcase_29 AC 297 ms
55,296 KB
testcase_30 AC 296 ms
55,368 KB
testcase_31 AC 298 ms
55,284 KB
testcase_32 AC 297 ms
55,224 KB
testcase_33 AC 303 ms
55,452 KB
testcase_34 AC 297 ms
55,312 KB
testcase_35 AC 292 ms
55,240 KB
testcase_36 AC 289 ms
55,480 KB
testcase_37 AC 287 ms
55,148 KB
testcase_38 AC 292 ms
55,260 KB
testcase_39 AC 296 ms
55,316 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:2:9: warning: variable 'n' is never used
    val n = readLine()!!.toInt()
        ^

ソースコード

diff #

fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    val a = readLine()!!.split(" ").map { it.toInt() }
    val diff = (1..a.lastIndex).map { a[it] - a[it-1] }.sorted()
    println(diff.first())
    println(a.last() - a.first())
}
0