結果

問題 No.615 集合に分けよう
ユーザー tentententen
提出日時 2022-08-02 12:52:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 1,395 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 78,920 KB
実行使用メモリ 47,204 KB
最終ジャッジ日時 2024-07-23 06:06:46
合計ジャッジ時間 8,410 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,116 KB
testcase_01 AC 54 ms
37,044 KB
testcase_02 AC 54 ms
36,944 KB
testcase_03 AC 54 ms
36,800 KB
testcase_04 AC 55 ms
37,116 KB
testcase_05 AC 54 ms
37,324 KB
testcase_06 AC 57 ms
37,148 KB
testcase_07 AC 55 ms
37,368 KB
testcase_08 AC 56 ms
37,124 KB
testcase_09 AC 55 ms
37,208 KB
testcase_10 AC 53 ms
37,216 KB
testcase_11 AC 52 ms
37,320 KB
testcase_12 AC 54 ms
36,784 KB
testcase_13 AC 59 ms
37,020 KB
testcase_14 AC 73 ms
38,212 KB
testcase_15 AC 144 ms
42,428 KB
testcase_16 AC 288 ms
46,948 KB
testcase_17 AC 213 ms
46,664 KB
testcase_18 AC 208 ms
47,072 KB
testcase_19 AC 224 ms
46,560 KB
testcase_20 AC 255 ms
47,204 KB
testcase_21 AC 271 ms
46,804 KB
testcase_22 AC 291 ms
47,116 KB
testcase_23 AC 178 ms
44,856 KB
testcase_24 AC 227 ms
45,120 KB
testcase_25 AC 53 ms
37,308 KB
testcase_26 AC 53 ms
37,096 KB
testcase_27 AC 140 ms
44,200 KB
testcase_28 AC 145 ms
43,968 KB
testcase_29 AC 189 ms
44,732 KB
testcase_30 AC 193 ms
44,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 total = values[n - 1] - values[0];
        PriorityQueue<Long> diff = new PriorityQueue<>();
        for (int i = 0; i < n - 1; i++) {
            diff.add(values[i] - values[i + 1]);
        }
        for (int i = 0; i < k - 1; i++) {
            total += diff.poll();
        }
        System.out.println(total);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0