結果

問題 No.1046 Fruits Rush
ユーザー tentententen
提出日時 2020-11-09 20:24:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 499 bytes
コンパイル時間 1,883 ms
コンパイル使用メモリ 74,692 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-07-22 16:17:38
合計ジャッジ時間 4,952 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,204 KB
testcase_01 AC 102 ms
40,220 KB
testcase_02 AC 109 ms
41,364 KB
testcase_03 AC 118 ms
41,172 KB
testcase_04 AC 106 ms
40,288 KB
testcase_05 AC 118 ms
41,664 KB
testcase_06 AC 100 ms
40,384 KB
testcase_07 AC 117 ms
41,440 KB
testcase_08 AC 118 ms
41,516 KB
testcase_09 AC 115 ms
41,360 KB
testcase_10 AC 101 ms
39,980 KB
testcase_11 AC 99 ms
40,276 KB
testcase_12 AC 117 ms
41,544 KB
testcase_13 AC 119 ms
41,588 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

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);
        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