結果

問題 No.716 距離
ユーザー 💕💖💞💕💖💞
提出日時 2018-08-01 00:12:15
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 10,977 ms
コンパイル使用メモリ 447,212 KB
実行使用メモリ 60,696 KB
最終ジャッジ日時 2024-11-20 16:36:48
合計ジャッジ時間 25,314 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
60,540 KB
testcase_01 AC 329 ms
60,636 KB
testcase_02 AC 327 ms
60,532 KB
testcase_03 AC 333 ms
60,548 KB
testcase_04 AC 332 ms
60,628 KB
testcase_05 AC 324 ms
60,600 KB
testcase_06 AC 325 ms
60,536 KB
testcase_07 AC 296 ms
60,488 KB
testcase_08 AC 307 ms
60,308 KB
testcase_09 AC 315 ms
60,412 KB
testcase_10 AC 317 ms
60,580 KB
testcase_11 AC 311 ms
60,420 KB
testcase_12 AC 325 ms
60,632 KB
testcase_13 AC 318 ms
60,560 KB
testcase_14 AC 297 ms
60,420 KB
testcase_15 AC 329 ms
60,528 KB
testcase_16 AC 321 ms
60,520 KB
testcase_17 AC 319 ms
60,608 KB
testcase_18 AC 299 ms
60,548 KB
testcase_19 AC 311 ms
60,428 KB
testcase_20 AC 301 ms
60,416 KB
testcase_21 AC 307 ms
60,380 KB
testcase_22 AC 308 ms
60,500 KB
testcase_23 AC 304 ms
60,368 KB
testcase_24 AC 325 ms
60,696 KB
testcase_25 AC 319 ms
60,348 KB
testcase_26 AC 319 ms
60,552 KB
testcase_27 AC 314 ms
60,456 KB
testcase_28 AC 305 ms
60,356 KB
testcase_29 AC 317 ms
60,556 KB
testcase_30 AC 317 ms
60,492 KB
testcase_31 AC 322 ms
60,564 KB
testcase_32 AC 318 ms
60,360 KB
testcase_33 AC 315 ms
60,472 KB
testcase_34 AC 307 ms
60,536 KB
testcase_35 AC 297 ms
60,416 KB
testcase_36 AC 318 ms
60,552 KB
testcase_37 AC 307 ms
60,440 KB
testcase_38 AC 308 ms
60,448 KB
testcase_39 AC 313 ms
60,472 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^
Main.kt:5:41: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
  val min = zs.slice(1..zs.size-1).min()!!
                                        ^

ソースコード

diff #

fun main(args:Array<String>) {
  readLine()
  val xs = readLine()!!.split(" ").map(String::toInt).toMutableList()
  val zs = (listOf( 0 ) + xs).zip(xs).map { (f1, f2) -> f2 - f1 }
  val min = zs.slice(1..zs.size-1).min()!!
  val ys = xs.sorted()
  println("$min\n${ys.last() - ys.first()}" )
}
0