結果

問題 No.615 集合に分けよう
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-02 20:11:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 611 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 4,172 ms
コンパイル使用メモリ 77,852 KB
実行使用メモリ 48,816 KB
最終ジャッジ日時 2024-07-05 08:16:24
合計ジャッジ時間 14,866 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,440 KB
testcase_01 AC 114 ms
40,008 KB
testcase_02 AC 125 ms
40,984 KB
testcase_03 AC 121 ms
40,536 KB
testcase_04 AC 128 ms
41,188 KB
testcase_05 AC 127 ms
41,296 KB
testcase_06 AC 117 ms
40,060 KB
testcase_07 AC 137 ms
41,332 KB
testcase_08 AC 128 ms
40,604 KB
testcase_09 AC 136 ms
41,164 KB
testcase_10 AC 135 ms
41,192 KB
testcase_11 AC 135 ms
41,336 KB
testcase_12 AC 134 ms
41,412 KB
testcase_13 AC 174 ms
41,752 KB
testcase_14 AC 191 ms
42,568 KB
testcase_15 AC 307 ms
47,648 KB
testcase_16 AC 578 ms
48,408 KB
testcase_17 AC 594 ms
48,580 KB
testcase_18 AC 611 ms
48,816 KB
testcase_19 AC 562 ms
48,468 KB
testcase_20 AC 566 ms
48,424 KB
testcase_21 AC 582 ms
48,816 KB
testcase_22 AC 599 ms
48,580 KB
testcase_23 AC 465 ms
48,300 KB
testcase_24 AC 528 ms
48,552 KB
testcase_25 AC 127 ms
41,060 KB
testcase_26 AC 126 ms
41,044 KB
testcase_27 AC 441 ms
48,280 KB
testcase_28 AC 405 ms
48,180 KB
testcase_29 AC 486 ms
48,032 KB
testcase_30 AC 478 ms
47,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    int k = sc.nextInt();
    long[] a = new long[n];
    for(int i = 0; i < n; i++) {
      a[i] = sc.nextLong();
    }
    Arrays.sort(a);
    long ans = a[n - 1] - a[0];
    long[] b = new long[n - 1];
    for(int i = 1; i < n; i++) {
      b[i - 1] = a[i] - a[i - 1];
    }
    Arrays.sort(b);
    if(n == k) {
      ans = 0; 
    } else {
      for(int i = n - 2; i >= n - k; i--) {
        ans -= b[i];
      }
    }
    System.out.println(ans);
  }
}
0