結果

問題 No.1046 Fruits Rush
ユーザー shinnshinnshinnshinn
提出日時 2020-06-14 18:00:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 469 bytes
コンパイル時間 2,793 ms
コンパイル使用メモリ 75,028 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-06-27 15:05:13
合計ジャッジ時間 5,362 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,056 KB
testcase_01 AC 109 ms
39,892 KB
testcase_02 AC 109 ms
40,172 KB
testcase_03 AC 128 ms
41,176 KB
testcase_04 AC 126 ms
41,152 KB
testcase_05 AC 129 ms
40,904 KB
testcase_06 AC 123 ms
41,236 KB
testcase_07 AC 128 ms
41,520 KB
testcase_08 AC 126 ms
40,868 KB
testcase_09 AC 129 ms
41,024 KB
testcase_10 AC 121 ms
40,836 KB
testcase_11 AC 123 ms
40,836 KB
testcase_12 AC 134 ms
41,236 KB
testcase_13 AC 131 ms
41,408 KB
testcase_14 AC 115 ms
40,136 KB
testcase_15 AC 114 ms
40,232 KB
testcase_16 AC 125 ms
41,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main{
	public static void main(String[] args){
		Scanner scan = new Scanner(System.in);
		int n = Integer.parseInt(scan.next());
		int k = Integer.parseInt(scan.next());
		int[] a = new int[n];
		for(int i = 0;i < n; ++i){
			a[i] = Integer.parseInt(scan.next());
		}
		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