結果

問題 No.1046 Fruits Rush
ユーザー 水野嶺水野嶺
提出日時 2020-05-28 09:36:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 2,501 ms
コンパイル使用メモリ 77,160 KB
実行使用メモリ 41,672 KB
最終ジャッジ日時 2024-10-13 04:03:06
合計ジャッジ時間 5,504 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,204 KB
testcase_01 AC 133 ms
41,340 KB
testcase_02 AC 134 ms
41,076 KB
testcase_03 AC 143 ms
41,180 KB
testcase_04 AC 143 ms
41,468 KB
testcase_05 AC 142 ms
41,128 KB
testcase_06 AC 137 ms
41,328 KB
testcase_07 AC 145 ms
41,364 KB
testcase_08 AC 137 ms
41,200 KB
testcase_09 AC 141 ms
41,184 KB
testcase_10 AC 134 ms
41,244 KB
testcase_11 AC 136 ms
41,352 KB
testcase_12 AC 146 ms
41,672 KB
testcase_13 AC 145 ms
41,160 KB
testcase_14 AC 136 ms
41,000 KB
testcase_15 AC 137 ms
41,620 KB
testcase_16 AC 134 ms
41,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main
{
	public static void main (String[] args) 
	{
		// 入力値の読み込み
		Scanner sc = new Scanner(System.in);
		int  n = sc.nextInt();
		int  k = sc.nextInt();
		int goukei =0;
		
		ArrayList<Integer> fr = new ArrayList<>();
		
		for(int i=0;i<n;i++){
			fr.add(sc.nextInt());
		}
		Collections.sort(fr, Collections.reverseOrder());
		
		for(int i=0;i<k;i++){
			if(i==0){
			goukei += fr.get(i);
			}else if(fr.get(i)>0){
			goukei += fr.get(i);
			}
		}
		System.out.println(goukei);
		
	}
}
0