結果

問題 No.615 集合に分けよう
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-15 18:20:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 508 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 1,792 ms
コンパイル使用メモリ 74,128 KB
実行使用メモリ 49,276 KB
最終ジャッジ日時 2024-06-08 01:10:41
合計ジャッジ時間 11,258 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,924 KB
testcase_01 AC 111 ms
41,284 KB
testcase_02 AC 103 ms
41,224 KB
testcase_03 AC 103 ms
41,096 KB
testcase_04 AC 105 ms
40,924 KB
testcase_05 AC 104 ms
41,224 KB
testcase_06 AC 108 ms
41,088 KB
testcase_07 AC 118 ms
41,476 KB
testcase_08 AC 116 ms
41,020 KB
testcase_09 AC 115 ms
41,208 KB
testcase_10 AC 110 ms
41,236 KB
testcase_11 AC 115 ms
41,576 KB
testcase_12 AC 113 ms
41,620 KB
testcase_13 AC 148 ms
41,632 KB
testcase_14 AC 163 ms
42,288 KB
testcase_15 AC 268 ms
47,832 KB
testcase_16 AC 503 ms
49,276 KB
testcase_17 AC 485 ms
48,896 KB
testcase_18 AC 426 ms
47,436 KB
testcase_19 AC 479 ms
48,828 KB
testcase_20 AC 508 ms
49,040 KB
testcase_21 AC 481 ms
48,832 KB
testcase_22 AC 480 ms
48,932 KB
testcase_23 AC 401 ms
48,760 KB
testcase_24 AC 483 ms
48,924 KB
testcase_25 AC 105 ms
40,464 KB
testcase_26 AC 104 ms
40,888 KB
testcase_27 AC 367 ms
48,580 KB
testcase_28 AC 360 ms
48,616 KB
testcase_29 AC 388 ms
48,516 KB
testcase_30 AC 369 ms
47,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int k = sc.nextInt();
		long[] ar = new long[n];
		long[] dif = new long[n-1];
		for (int i=0; i<n; i++) {
			ar[i] = sc.nextLong();
		}
		Arrays.sort(ar);
		for (int i=0; i<n-1; i++) {
			dif[i] = ar[i+1]-ar[i];
		}
		Arrays.sort(dif);
		long total = 0;
		for (int i=0; i<n-k; i++) {
			total += dif[i];
		}
		System.out.println(total);
	}
}
0