結果

問題 No.156 キャンディー・ボックス
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-29 20:25:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 1,043 bytes
コンパイル時間 2,003 ms
コンパイル使用メモリ 79,784 KB
実行使用メモリ 38,380 KB
最終ジャッジ日時 2024-07-05 16:01:37
合計ジャッジ時間 5,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,492 KB
testcase_01 AC 52 ms
37,316 KB
testcase_02 AC 53 ms
36,964 KB
testcase_03 AC 50 ms
37,108 KB
testcase_04 AC 50 ms
37,412 KB
testcase_05 AC 69 ms
37,984 KB
testcase_06 AC 60 ms
38,236 KB
testcase_07 AC 60 ms
38,108 KB
testcase_08 AC 58 ms
37,996 KB
testcase_09 AC 56 ms
38,036 KB
testcase_10 AC 59 ms
37,968 KB
testcase_11 AC 57 ms
37,612 KB
testcase_12 AC 70 ms
38,236 KB
testcase_13 AC 60 ms
38,380 KB
testcase_14 AC 54 ms
37,620 KB
testcase_15 AC 60 ms
38,224 KB
testcase_16 AC 68 ms
37,868 KB
testcase_17 AC 67 ms
38,000 KB
testcase_18 AC 64 ms
37,604 KB
testcase_19 AC 55 ms
37,352 KB
testcase_20 AC 50 ms
37,100 KB
testcase_21 AC 50 ms
37,412 KB
testcase_22 AC 53 ms
37,492 KB
testcase_23 AC 51 ms
37,340 KB
testcase_24 AC 49 ms
37,392 KB
testcase_25 AC 50 ms
37,480 KB
testcase_26 AC 49 ms
37,080 KB
testcase_27 AC 50 ms
37,320 KB
testcase_28 AC 50 ms
37,316 KB
testcase_29 AC 50 ms
37,496 KB
testcase_30 AC 67 ms
37,856 KB
testcase_31 AC 61 ms
38,236 KB
testcase_32 AC 91 ms
38,208 KB
testcase_33 AC 80 ms
38,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.Scanner;
import java.util.stream.Stream;

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String[] inputs = reader.readLine().split(" ");
        int N = Integer.parseInt(inputs[0]);
        int M = Integer.parseInt(inputs[1]);
        inputs = reader.readLine().split(" ");
        int[] boxes = Stream.of(inputs).mapToInt(Integer::parseInt).toArray();
        Arrays.sort(boxes);
        int index = 0;
        while (M != 0) {
            if (boxes[index] == 0) {
                index += 1;
            } else {
                boxes[index] -= 1;
                M -= 1;
            }
        }
        if (boxes[index] == 0) {
            System.out.println(index + 1);
        } else {
            System.out.println(index);
        }

    }
}
0