結果

問題 No.615 集合に分けよう
ユーザー tentententen
提出日時 2020-09-05 11:51:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 641 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 2,201 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 48,836 KB
最終ジャッジ日時 2024-11-28 01:02:57
合計ジャッジ時間 14,134 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
40,996 KB
testcase_01 AC 140 ms
41,216 KB
testcase_02 AC 133 ms
41,136 KB
testcase_03 AC 134 ms
41,444 KB
testcase_04 AC 136 ms
41,576 KB
testcase_05 AC 132 ms
41,308 KB
testcase_06 AC 139 ms
41,412 KB
testcase_07 AC 142 ms
41,488 KB
testcase_08 AC 147 ms
41,696 KB
testcase_09 AC 146 ms
41,196 KB
testcase_10 AC 144 ms
41,512 KB
testcase_11 AC 135 ms
40,748 KB
testcase_12 AC 143 ms
41,720 KB
testcase_13 AC 187 ms
41,844 KB
testcase_14 AC 195 ms
42,796 KB
testcase_15 AC 307 ms
48,052 KB
testcase_16 AC 641 ms
48,612 KB
testcase_17 AC 586 ms
48,416 KB
testcase_18 AC 634 ms
48,780 KB
testcase_19 AC 620 ms
48,748 KB
testcase_20 AC 596 ms
48,836 KB
testcase_21 AC 630 ms
48,396 KB
testcase_22 AC 618 ms
48,496 KB
testcase_23 AC 465 ms
48,632 KB
testcase_24 AC 592 ms
48,384 KB
testcase_25 AC 121 ms
40,100 KB
testcase_26 AC 132 ms
41,152 KB
testcase_27 AC 423 ms
48,384 KB
testcase_28 AC 430 ms
48,432 KB
testcase_29 AC 511 ms
48,144 KB
testcase_30 AC 504 ms
48,204 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