結果

問題 No.1046 Fruits Rush
ユーザー kusagame12kusagame12
提出日時 2023-11-22 18:00:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 847 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 41,752 KB
最終ジャッジ日時 2024-09-26 07:35:20
合計ジャッジ時間 4,934 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,568 KB
testcase_01 AC 111 ms
40,064 KB
testcase_02 AC 106 ms
39,984 KB
testcase_03 AC 113 ms
40,636 KB
testcase_04 AC 127 ms
41,148 KB
testcase_05 AC 130 ms
41,276 KB
testcase_06 AC 120 ms
41,336 KB
testcase_07 AC 136 ms
41,276 KB
testcase_08 AC 111 ms
40,536 KB
testcase_09 AC 125 ms
41,632 KB
testcase_10 AC 116 ms
40,828 KB
testcase_11 AC 117 ms
41,392 KB
testcase_12 AC 130 ms
41,752 KB
testcase_13 AC 129 ms
41,684 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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[] juices = new int[n];
        for(int i = 0 ; i < n ; i++){
            juices[i] = sc.nextInt();
        }
        
        int ans = 0;
        for(int i = 0 ; i < k ; i++){
            int max = 0;
            int index = -1;
            for(int j = 0 ; j < n ; j++){
                if(juices[j] > max){
                    max = juices[j];
                    index = j;
                }
            }   
            if(max == 0){
                break;
            }
            ans += max;
            juices[index] = -101;
        }
      
        System.out.println(ans);
        
    }
    
}
0