結果

問題 No.615 集合に分けよう
ユーザー tentententen
提出日時 2020-09-05 11:51:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 563 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 2,167 ms
コンパイル使用メモリ 74,416 KB
実行使用メモリ 49,744 KB
最終ジャッジ日時 2024-05-05 23:41:22
合計ジャッジ時間 12,727 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,220 KB
testcase_01 AC 124 ms
41,572 KB
testcase_02 AC 126 ms
41,336 KB
testcase_03 AC 124 ms
41,580 KB
testcase_04 AC 125 ms
41,684 KB
testcase_05 AC 127 ms
41,256 KB
testcase_06 AC 126 ms
40,668 KB
testcase_07 AC 134 ms
41,748 KB
testcase_08 AC 125 ms
41,984 KB
testcase_09 AC 124 ms
41,708 KB
testcase_10 AC 132 ms
41,460 KB
testcase_11 AC 134 ms
41,432 KB
testcase_12 AC 128 ms
41,844 KB
testcase_13 AC 157 ms
42,472 KB
testcase_14 AC 160 ms
42,412 KB
testcase_15 AC 272 ms
48,656 KB
testcase_16 AC 474 ms
47,608 KB
testcase_17 AC 555 ms
48,860 KB
testcase_18 AC 542 ms
48,636 KB
testcase_19 AC 555 ms
48,792 KB
testcase_20 AC 555 ms
49,744 KB
testcase_21 AC 563 ms
48,920 KB
testcase_22 AC 547 ms
48,676 KB
testcase_23 AC 438 ms
48,712 KB
testcase_24 AC 522 ms
48,732 KB
testcase_25 AC 105 ms
40,080 KB
testcase_26 AC 114 ms
41,092 KB
testcase_27 AC 376 ms
48,360 KB
testcase_28 AC 407 ms
48,168 KB
testcase_29 AC 410 ms
46,884 KB
testcase_30 AC 410 ms
47,124 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[] arr = new long[n];
    	for (int i = 0; i < n; i++) {
    	    arr[i] = sc.nextLong();
    	}
    	Arrays.sort(arr);
    	long[] dif = new long[n - 1];
    	for (int i = 0; i < n - 1; i++) {
    	    dif[i] = arr[i + 1] - arr[i];
    	}
    	Arrays.sort(dif);
    	long ans = 0;
    	for (int i = 0; i < n - k; i++) {
    	    ans += dif[i];
    	}
    	System.out.println(ans);
	}
}
0