結果

問題 No.370 道路の掃除
ユーザー 💕💖💞💕💖💞
提出日時 2017-07-01 14:19:26
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 520 bytes
コンパイル時間 10,877 ms
コンパイル使用メモリ 434,744 KB
実行使用メモリ 87,728 KB
最終ジャッジ日時 2024-11-20 11:08:42
合計ジャッジ時間 25,275 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 309 ms
60,288 KB
testcase_03 AC 307 ms
60,300 KB
testcase_04 AC 307 ms
60,172 KB
testcase_05 AC 307 ms
60,396 KB
testcase_06 AC 312 ms
60,476 KB
testcase_07 AC 315 ms
60,224 KB
testcase_08 AC 304 ms
60,404 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 329 ms
60,508 KB
testcase_13 WA -
testcase_14 AC 336 ms
60,688 KB
testcase_15 WA -
testcase_16 AC 330 ms
60,504 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) {
          ^

ソースコード

diff #

import java.lang.Math
fun main( args : Array<String> ) {
  val (n, m) = readLine()!!.split(" ").map { it.toInt() }
  var ps = (1..m).map {
    readLine()!!.toInt()
  }.toList()
  var status = 0
  var miles  = 0
  (0..n-1).map {
    val f = ps.map { x -> 
                       Pair(x, Math.abs(x - status) ) 
                    }.sortedBy { x->
                      x.second 
                    }.first()
    miles   += f.second
    status   = f.first
    ps = ps.filter { x -> x != status }
  }
  println( miles )
}
0