結果
| 問題 | No.1046 Fruits Rush |
| コンテスト | |
| ユーザー |
joybeeee
|
| 提出日時 | 2020-05-12 15:47:20 |
| 言語 | Java (openjdk 26.0.2.1) |
| 結果 |
AC
|
| 実行時間 | 60 ms / 2,000 ms |
| + 3µs | |
| コード長 | 638 bytes |
| 記録 | |
| コンパイル時間 | 1,550 ms |
| コンパイル使用メモリ | 86,172 KB |
| 実行使用メモリ | 43,092 KB |
| 最終ジャッジ日時 | 2026-08-26 05:26:20 |
| 合計ジャッジ時間 | 3,760 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 |
ソースコード
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();
int max = Integer.MIN_VALUE;
PriorityQueue<Integer> pq = new PriorityQueue<>();
for(int i = 0; i < n; i++) {
int num = sc.nextInt();
max = Math.max(max, num);
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 ? max : sum);
}
}
joybeeee