結果

問題 No.1046 Fruits Rush
ユーザー tentententen
提出日時 2020-11-09 20:25:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 2,349 ms
コンパイル使用メモリ 80,208 KB
実行使用メモリ 41,952 KB
最終ジャッジ日時 2024-07-22 16:17:44
合計ジャッジ時間 5,314 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,540 KB
testcase_01 AC 130 ms
41,340 KB
testcase_02 AC 132 ms
41,392 KB
testcase_03 AC 134 ms
41,744 KB
testcase_04 AC 137 ms
41,392 KB
testcase_05 AC 138 ms
41,484 KB
testcase_06 AC 134 ms
41,528 KB
testcase_07 AC 135 ms
41,672 KB
testcase_08 AC 137 ms
41,380 KB
testcase_09 AC 146 ms
41,536 KB
testcase_10 AC 132 ms
41,468 KB
testcase_11 AC 134 ms
41,580 KB
testcase_12 AC 143 ms
41,348 KB
testcase_13 AC 141 ms
41,760 KB
testcase_14 AC 140 ms
41,952 KB
testcase_15 AC 141 ms
41,520 KB
testcase_16 AC 134 ms
41,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        int[] arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
        }
        Arrays.sort(arr);
        if (arr[n - 1] < 0) {
            System.out.println(arr[n - 1]);
            return;
        }
        long ans = 0;
        for (int i = 0; i < k && arr[n - 1 - i] > 0; i++) {
            ans += arr[n - 1 - i];
        }
        System.out.println(ans);
    }
}
0