結果

問題 No.1046 Fruits Rush
ユーザー joybeeeejoybeeee
提出日時 2020-05-12 15:43:29
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 503 bytes
コンパイル時間 2,446 ms
コンパイル使用メモリ 75,820 KB
実行使用メモリ 56,108 KB
最終ジャッジ日時 2024-09-13 13:29:44
合計ジャッジ時間 5,657 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,140 KB
testcase_01 WA -
testcase_02 AC 120 ms
53,180 KB
testcase_03 WA -
testcase_04 AC 141 ms
54,472 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 140 ms
54,012 KB
testcase_10 AC 133 ms
56,108 KB
testcase_11 AC 131 ms
53,836 KB
testcase_12 WA -
testcase_13 AC 146 ms
54,104 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 131 ms
54,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String args[]) throws Exception {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        PriorityQueue<Integer> pq = new PriorityQueue<>();
        for(int i = 0; i < n; i++) {
        	pq.offer(sc.nextInt());
        	if(pq.size() > k) pq.poll();
        }
        int sum = 0;
        while(!pq.isEmpty())
        	sum += pq.poll();
        System.out.println(sum);
    }
}
0