結果

問題 No.615 集合に分けよう
ユーザー htensaihtensai
提出日時 2019-11-14 14:18:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 612 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 75,208 KB
実行使用メモリ 49,616 KB
最終ジャッジ日時 2024-09-21 21:24:33
合計ジャッジ時間 14,343 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,572 KB
testcase_01 AC 132 ms
41,304 KB
testcase_02 AC 133 ms
41,052 KB
testcase_03 AC 131 ms
41,040 KB
testcase_04 AC 137 ms
41,616 KB
testcase_05 AC 136 ms
41,464 KB
testcase_06 AC 140 ms
41,748 KB
testcase_07 AC 147 ms
41,556 KB
testcase_08 AC 149 ms
41,696 KB
testcase_09 AC 145 ms
41,372 KB
testcase_10 AC 144 ms
41,268 KB
testcase_11 AC 141 ms
41,520 KB
testcase_12 AC 144 ms
41,336 KB
testcase_13 AC 182 ms
41,824 KB
testcase_14 AC 192 ms
42,684 KB
testcase_15 AC 307 ms
48,728 KB
testcase_16 AC 585 ms
48,776 KB
testcase_17 AC 611 ms
48,692 KB
testcase_18 AC 612 ms
48,408 KB
testcase_19 AC 606 ms
48,768 KB
testcase_20 AC 566 ms
48,392 KB
testcase_21 AC 577 ms
49,616 KB
testcase_22 AC 608 ms
48,792 KB
testcase_23 AC 487 ms
48,444 KB
testcase_24 AC 584 ms
48,808 KB
testcase_25 AC 132 ms
41,580 KB
testcase_26 AC 132 ms
41,472 KB
testcase_27 AC 421 ms
48,644 KB
testcase_28 AC 436 ms
48,432 KB
testcase_29 AC 507 ms
48,396 KB
testcase_30 AC 506 ms
48,336 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 total = 0;
		for (int i = 0; i < n - 1; i++) {
		    arr[i] = arr[i + 1] - arr[i];
		    total += arr[i];
		}
		arr[n - 1] = 0;
		Arrays.sort(arr);
		for (int i = 0; i < k - 1; i++) {
		    total -= arr[n - i - 1];
		}
		System.out.println(total);
	}
}
0