結果

問題 No.1046 Fruits Rush
ユーザー kusagame12kusagame12
提出日時 2023-11-22 18:06:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 927 bytes
コンパイル時間 1,985 ms
コンパイル使用メモリ 74,940 KB
実行使用メモリ 41,912 KB
最終ジャッジ日時 2024-09-26 07:35:31
合計ジャッジ時間 4,719 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,340 KB
testcase_01 AC 108 ms
40,996 KB
testcase_02 AC 118 ms
41,044 KB
testcase_03 AC 123 ms
41,312 KB
testcase_04 AC 121 ms
41,272 KB
testcase_05 AC 123 ms
41,912 KB
testcase_06 AC 117 ms
41,096 KB
testcase_07 AC 127 ms
41,852 KB
testcase_08 AC 106 ms
39,852 KB
testcase_09 AC 123 ms
41,600 KB
testcase_10 AC 104 ms
39,996 KB
testcase_11 AC 114 ms
40,764 KB
testcase_12 AC 127 ms
41,728 KB
testcase_13 AC 123 ms
41,136 KB
testcase_14 AC 121 ms
41,444 KB
testcase_15 AC 119 ms
41,544 KB
testcase_16 AC 118 ms
41,076 KB
権限があれば一括ダウンロードができます

ソースコード

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