結果

問題 No.1046 Fruits Rush
ユーザー joybeeeejoybeeee
提出日時 2020-05-12 15:44:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 549 bytes
コンパイル時間 2,152 ms
コンパイル使用メモリ 75,364 KB
実行使用メモリ 55,844 KB
最終ジャッジ日時 2024-09-13 13:30:19
合計ジャッジ時間 5,275 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,100 KB
testcase_01 AC 131 ms
54,188 KB
testcase_02 AC 131 ms
54,096 KB
testcase_03 AC 137 ms
54,224 KB
testcase_04 AC 141 ms
54,248 KB
testcase_05 AC 137 ms
54,200 KB
testcase_06 AC 135 ms
54,000 KB
testcase_07 AC 138 ms
54,240 KB
testcase_08 AC 132 ms
54,064 KB
testcase_09 AC 139 ms
54,100 KB
testcase_10 AC 136 ms
54,168 KB
testcase_11 AC 136 ms
54,164 KB
testcase_12 AC 144 ms
54,156 KB
testcase_13 AC 144 ms
54,036 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

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++) {
        	int num = sc.nextInt();
        	if(num > 0)
        		pq.offer(num);
        	if(pq.size() > k) pq.poll();
        }
        int sum = 0;
        while(!pq.isEmpty())
        	sum += pq.poll();
        System.out.println(sum);
    }
}
0