結果

問題 No.370 道路の掃除
ユーザー 💕💖💞💕💖💞
提出日時 2017-07-01 14:40:50
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 385 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 13,392 ms
コンパイル使用メモリ 434,424 KB
実行使用メモリ 60,652 KB
最終ジャッジ日時 2024-11-20 11:10:20
合計ジャッジ時間 26,810 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 337 ms
60,244 KB
testcase_01 AC 341 ms
60,228 KB
testcase_02 AC 351 ms
60,340 KB
testcase_03 AC 338 ms
60,236 KB
testcase_04 AC 341 ms
60,208 KB
testcase_05 AC 340 ms
60,280 KB
testcase_06 AC 341 ms
60,200 KB
testcase_07 AC 347 ms
60,108 KB
testcase_08 AC 346 ms
60,348 KB
testcase_09 AC 344 ms
60,312 KB
testcase_10 AC 353 ms
60,308 KB
testcase_11 AC 351 ms
60,168 KB
testcase_12 AC 356 ms
60,200 KB
testcase_13 AC 348 ms
60,228 KB
testcase_14 AC 359 ms
60,268 KB
testcase_15 AC 362 ms
60,208 KB
testcase_16 AC 355 ms
60,376 KB
testcase_17 AC 350 ms
60,264 KB
testcase_18 AC 356 ms
60,420 KB
testcase_19 AC 359 ms
60,196 KB
testcase_20 AC 383 ms
60,480 KB
testcase_21 AC 378 ms
60,368 KB
testcase_22 AC 373 ms
60,336 KB
testcase_23 AC 376 ms
60,364 KB
testcase_24 AC 368 ms
60,408 KB
testcase_25 AC 380 ms
60,544 KB
testcase_26 AC 376 ms
60,460 KB
testcase_27 AC 366 ms
60,400 KB
testcase_28 AC 373 ms
60,524 KB
testcase_29 AC 379 ms
60,652 KB
testcase_30 AC 385 ms
60,424 KB
testcase_31 AC 376 ms
60,456 KB
testcase_32 AC 376 ms
60,336 KB
testcase_33 AC 376 ms
60,444 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) {
          ^
Main.kt:14:8: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
    ret!!
       ^

ソースコード

diff #

fun main( args : Array<String> ) {
  val (n, m) = readLine()!!.split(" ").map { it.toInt() }
  var ps = (1..m).map {
    readLine()!!.toInt()
  }.toList()
  .sorted()
  (0..m-n).map { i ->
    val a = ps[i]
    val b = ps[i+n-1]
    val ret = when { 
      a*b < 0 -> listOf( Math.abs(a)*2 + Math.abs(b), Math.abs(a) + Math.abs(b)*2).min()
      else    -> listOf( Math.abs(a), Math.abs(b) ).max()
    }
    ret!!
  }.min()
  .let { println( it ) }
}
0