結果

問題 No.156 キャンディー・ボックス
ユーザー samplelpmassamplelpmas
提出日時 2016-11-10 13:14:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 825 bytes
コンパイル時間 1,941 ms
コンパイル使用メモリ 74,036 KB
実行使用メモリ 41,324 KB
最終ジャッジ日時 2024-07-05 15:56:47
合計ジャッジ時間 6,142 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,080 KB
testcase_01 AC 97 ms
40,440 KB
testcase_02 AC 103 ms
40,920 KB
testcase_03 AC 106 ms
40,304 KB
testcase_04 AC 105 ms
41,324 KB
testcase_05 AC 95 ms
39,972 KB
testcase_06 AC 106 ms
39,740 KB
testcase_07 AC 105 ms
40,820 KB
testcase_08 AC 104 ms
41,316 KB
testcase_09 AC 105 ms
41,104 KB
testcase_10 AC 105 ms
40,924 KB
testcase_11 AC 110 ms
41,040 KB
testcase_12 AC 97 ms
40,480 KB
testcase_13 AC 96 ms
40,448 KB
testcase_14 AC 92 ms
40,140 KB
testcase_15 AC 105 ms
40,916 KB
testcase_16 AC 103 ms
41,044 KB
testcase_17 AC 98 ms
40,144 KB
testcase_18 AC 111 ms
41,008 KB
testcase_19 AC 108 ms
41,272 KB
testcase_20 AC 107 ms
40,956 KB
testcase_21 AC 97 ms
40,056 KB
testcase_22 AC 91 ms
39,636 KB
testcase_23 AC 97 ms
40,080 KB
testcase_24 AC 99 ms
40,496 KB
testcase_25 AC 104 ms
40,884 KB
testcase_26 AC 106 ms
41,060 KB
testcase_27 AC 105 ms
40,956 KB
testcase_28 AC 107 ms
41,176 KB
testcase_29 AC 108 ms
40,928 KB
testcase_30 AC 106 ms
41,040 KB
testcase_31 AC 103 ms
41,016 KB
testcase_32 AC 107 ms
41,052 KB
testcase_33 AC 105 ms
40,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int numBoxes = sc.nextInt();
        int takingCandyTotal = sc.nextInt();
        int[] numCandies = new int[numBoxes];

        for (int i = 0; i < numBoxes; i++) {
            numCandies[i] = sc.nextInt();
        }

        Arrays.sort(numCandies);

        int numEmptyBoxes = 0;

        for (int i = 0; i < numBoxes; i++) {

            int numTakingCandy = Math.min(takingCandyTotal, numCandies[i]);

            numCandies[i] -= numTakingCandy;
            takingCandyTotal -= numTakingCandy;

            if (numCandies[i] == 0) {
                numEmptyBoxes++;
            }

        }

        System.out.println(numEmptyBoxes);

    }

}
0