結果
| 問題 | No.1046 Fruits Rush |
| コンテスト | |
| ユーザー |
joybeeee
|
| 提出日時 | 2020-05-12 15:44:25 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 549 bytes |
| 記録 | |
| コンパイル時間 | 1,713 ms |
| コンパイル使用メモリ | 83,516 KB |
| 実行使用メモリ | 41,820 KB |
| 最終ジャッジ日時 | 2026-04-04 05:29:47 |
| 合計ジャッジ時間 | 3,222 ms |
|
ジャッジサーバーID (参考情報) |
judge5_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 WA * 3 |
ソースコード
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);
}
}
joybeeee