結果

問題 No.615 集合に分けよう
ユーザー Mcpu3Mcpu3
提出日時 2018-11-30 22:59:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 593 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 3,233 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 59,996 KB
最終ジャッジ日時 2024-06-26 23:47:29
合計ジャッジ時間 13,706 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
52,984 KB
testcase_01 AC 127 ms
54,168 KB
testcase_02 AC 128 ms
54,348 KB
testcase_03 AC 127 ms
54,184 KB
testcase_04 AC 129 ms
53,804 KB
testcase_05 AC 126 ms
54,028 KB
testcase_06 AC 133 ms
54,056 KB
testcase_07 AC 149 ms
54,080 KB
testcase_08 AC 135 ms
54,308 KB
testcase_09 AC 138 ms
54,488 KB
testcase_10 AC 136 ms
54,120 KB
testcase_11 AC 134 ms
54,316 KB
testcase_12 AC 131 ms
54,096 KB
testcase_13 AC 174 ms
54,280 KB
testcase_14 AC 177 ms
54,504 KB
testcase_15 AC 295 ms
59,276 KB
testcase_16 AC 584 ms
59,500 KB
testcase_17 AC 584 ms
59,696 KB
testcase_18 AC 562 ms
59,344 KB
testcase_19 AC 581 ms
59,520 KB
testcase_20 AC 593 ms
59,996 KB
testcase_21 AC 558 ms
59,628 KB
testcase_22 AC 592 ms
59,604 KB
testcase_23 AC 471 ms
59,296 KB
testcase_24 AC 568 ms
59,408 KB
testcase_25 AC 127 ms
54,064 KB
testcase_26 AC 128 ms
54,168 KB
testcase_27 AC 410 ms
59,116 KB
testcase_28 AC 418 ms
59,300 KB
testcase_29 AC 478 ms
59,464 KB
testcase_30 AC 485 ms
59,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt(), K = sc.nextInt();
		long a[] = new long[N], ans = 0, tmp[] = new long[N - 1];
		for (int i = 0; i < N; ++i) a[i] = sc.nextLong();
		sc.close();
		Arrays.sort(a);
		for (int i = 0; i < N - 1; ++i) tmp[i] = a[i + 1] - a[i];
		Arrays.sort(tmp);
		for (int i = 0; i < N - K; ++i) ans += tmp[i];
		System.out.print(ans);
	}
}
0