結果

問題 No.615 集合に分けよう
ユーザー 💕💖💞💕💖💞
提出日時 2018-06-18 12:56:42
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 753 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 12,473 ms
コンパイル使用メモリ 437,908 KB
実行使用メモリ 75,736 KB
最終ジャッジ日時 2024-11-20 16:26:41
合計ジャッジ時間 28,924 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
60,268 KB
testcase_01 AC 330 ms
60,292 KB
testcase_02 AC 334 ms
60,408 KB
testcase_03 AC 330 ms
60,272 KB
testcase_04 AC 334 ms
60,268 KB
testcase_05 AC 331 ms
60,224 KB
testcase_06 AC 327 ms
60,296 KB
testcase_07 AC 334 ms
60,412 KB
testcase_08 AC 334 ms
60,356 KB
testcase_09 AC 333 ms
60,324 KB
testcase_10 AC 339 ms
60,292 KB
testcase_11 AC 328 ms
60,336 KB
testcase_12 AC 334 ms
60,328 KB
testcase_13 AC 355 ms
60,532 KB
testcase_14 AC 365 ms
60,612 KB
testcase_15 AC 534 ms
64,968 KB
testcase_16 AC 700 ms
75,560 KB
testcase_17 AC 753 ms
75,660 KB
testcase_18 AC 727 ms
75,732 KB
testcase_19 AC 736 ms
75,736 KB
testcase_20 AC 703 ms
75,464 KB
testcase_21 AC 719 ms
75,544 KB
testcase_22 AC 703 ms
75,564 KB
testcase_23 AC 606 ms
69,228 KB
testcase_24 AC 719 ms
73,432 KB
testcase_25 AC 319 ms
56,944 KB
testcase_26 AC 315 ms
56,932 KB
testcase_27 AC 483 ms
66,900 KB
testcase_28 AC 486 ms
66,888 KB
testcase_29 AC 544 ms
73,024 KB
testcase_30 AC 532 ms
73,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val (n, k) = readLine()!!.split(" ").map(String::toInt)
  val xs = readLine()!!.split(" ").map(String::toLong).sorted().toMutableList()
  
  var bs = mutableListOf<Long>()
  for( i in (0..xs.size - 2) ) {
    bs.add( xs[i+1] - xs[i] )
  }
  bs = bs.sorted().toMutableList()
  println(bs.slice(0..n-k-1).sum())
}
0