結果

問題 No.135 とりあえず1次元の問題
ユーザー 💕💖💞💕💖💞
提出日時 2017-06-27 23:09:37
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 343 bytes
コンパイル時間 14,523 ms
コンパイル使用メモリ 449,300 KB
実行使用メモリ 307,252 KB
最終ジャッジ日時 2024-11-20 10:43:33
合計ジャッジ時間 51,080 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 321 ms
55,112 KB
testcase_02 WA -
testcase_03 AC 321 ms
63,992 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 386 ms
56,008 KB
testcase_13 AC 349 ms
52,464 KB
testcase_14 AC 467 ms
70,836 KB
testcase_15 AC 396 ms
55,880 KB
testcase_16 WA -
testcase_17 AC 471 ms
71,844 KB
testcase_18 AC 360 ms
52,692 KB
testcase_19 AC 477 ms
69,124 KB
testcase_20 AC 429 ms
62,036 KB
testcase_21 TLE -
testcase_22 TLE -
evil01.txt TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) {
          ^

ソースコード

diff #

import java.lang.Math

fun main( args : Array<String> ) {
  readLine()
  val bs = readLine()!!
    .split(" ")
    .map { it.toInt() }

  val cs = mutableSetOf<Int>()
  bs.mapIndexed { i, x->
    for(j in (i+1..bs.size-1)){
      val last  = bs[j]
      val delta = Math.abs( last - x )
      cs.add( delta )
    }
  }
  println( cs.min() )
}
0