結果

問題 No.615 集合に分けよう
ユーザー tentententen
提出日時 2023-04-14 14:22:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 1,929 bytes
コンパイル時間 2,867 ms
コンパイル使用メモリ 88,432 KB
実行使用メモリ 58,728 KB
最終ジャッジ日時 2024-10-10 06:12:56
合計ジャッジ時間 8,110 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,128 KB
testcase_01 AC 53 ms
50,348 KB
testcase_02 AC 55 ms
50,512 KB
testcase_03 AC 52 ms
50,360 KB
testcase_04 AC 52 ms
50,628 KB
testcase_05 AC 58 ms
50,568 KB
testcase_06 AC 53 ms
50,512 KB
testcase_07 AC 54 ms
50,276 KB
testcase_08 AC 52 ms
50,548 KB
testcase_09 AC 53 ms
50,244 KB
testcase_10 AC 53 ms
50,312 KB
testcase_11 AC 52 ms
50,540 KB
testcase_12 AC 53 ms
50,492 KB
testcase_13 AC 57 ms
50,516 KB
testcase_14 AC 70 ms
51,444 KB
testcase_15 AC 141 ms
52,920 KB
testcase_16 AC 222 ms
56,284 KB
testcase_17 AC 221 ms
56,584 KB
testcase_18 AC 223 ms
56,624 KB
testcase_19 AC 216 ms
56,660 KB
testcase_20 AC 223 ms
58,728 KB
testcase_21 AC 225 ms
56,808 KB
testcase_22 AC 229 ms
56,560 KB
testcase_23 AC 194 ms
56,696 KB
testcase_24 AC 222 ms
56,456 KB
testcase_25 AC 54 ms
50,252 KB
testcase_26 AC 53 ms
50,532 KB
testcase_27 AC 133 ms
55,032 KB
testcase_28 AC 139 ms
54,208 KB
testcase_29 AC 186 ms
55,564 KB
testcase_30 AC 184 ms
55,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        long[] values = new long[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextLong();
        }
        Arrays.sort(values);
        long[] diff = new long[n - 1];
        for (int i = 0; i < n - 1; i++) {
            diff[i] = values[i + 1] - values[i];
        }
        Arrays.sort(diff);
        long ans = 0;
        for (int i = 0; i < n - k; i++) {
            ans += diff[i];
        }
        System.out.println(ans);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0