結果

問題 No.1046 Fruits Rush
ユーザー ks2mks2m
提出日時 2020-05-08 21:26:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 2,425 ms
コンパイル使用メモリ 75,064 KB
実行使用メモリ 54,336 KB
最終ジャッジ日時 2024-07-03 23:42:31
合計ジャッジ時間 5,143 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
53,040 KB
testcase_01 AC 102 ms
53,140 KB
testcase_02 AC 116 ms
54,064 KB
testcase_03 AC 119 ms
54,224 KB
testcase_04 AC 129 ms
53,920 KB
testcase_05 AC 123 ms
54,336 KB
testcase_06 AC 119 ms
54,216 KB
testcase_07 AC 122 ms
54,160 KB
testcase_08 AC 105 ms
52,752 KB
testcase_09 AC 126 ms
53,884 KB
testcase_10 AC 115 ms
54,176 KB
testcase_11 AC 114 ms
54,244 KB
testcase_12 AC 126 ms
54,332 KB
testcase_13 AC 125 ms
54,232 KB
testcase_14 AC 112 ms
54,192 KB
testcase_15 AC 116 ms
54,176 KB
testcase_16 AC 110 ms
53,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

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[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		Arrays.sort(a);
		int ans = a[n - 1];
		for (int i = n - 2; i >= n - k; i--) {
			if (a[i] >= 0) {
				ans += a[i];
			}
		}
		System.out.println(ans);
	}
}
0