結果

問題 No.156 キャンディー・ボックス
ユーザー yagi2yagi2
提出日時 2017-04-24 17:12:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,046 ms / 2,000 ms
コード長 937 bytes
コンパイル時間 2,308 ms
コンパイル使用メモリ 88,664 KB
実行使用メモリ 58,732 KB
最終ジャッジ日時 2024-07-05 16:02:11
合計ジャッジ時間 12,491 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 175 ms
54,320 KB
testcase_01 AC 115 ms
52,960 KB
testcase_02 AC 122 ms
53,772 KB
testcase_03 AC 125 ms
53,776 KB
testcase_04 AC 127 ms
54,208 KB
testcase_05 AC 270 ms
57,044 KB
testcase_06 AC 350 ms
58,168 KB
testcase_07 AC 312 ms
57,840 KB
testcase_08 AC 284 ms
58,116 KB
testcase_09 AC 258 ms
57,188 KB
testcase_10 AC 322 ms
58,040 KB
testcase_11 AC 258 ms
57,264 KB
testcase_12 AC 359 ms
58,268 KB
testcase_13 AC 293 ms
57,428 KB
testcase_14 AC 268 ms
57,328 KB
testcase_15 AC 304 ms
57,608 KB
testcase_16 AC 255 ms
57,144 KB
testcase_17 AC 298 ms
57,908 KB
testcase_18 AC 205 ms
56,472 KB
testcase_19 AC 220 ms
56,696 KB
testcase_20 AC 149 ms
54,096 KB
testcase_21 AC 174 ms
54,260 KB
testcase_22 AC 209 ms
56,840 KB
testcase_23 AC 191 ms
54,712 KB
testcase_24 AC 124 ms
54,212 KB
testcase_25 AC 125 ms
53,984 KB
testcase_26 AC 114 ms
53,128 KB
testcase_27 AC 123 ms
54,232 KB
testcase_28 AC 124 ms
54,280 KB
testcase_29 AC 112 ms
53,048 KB
testcase_30 AC 463 ms
58,444 KB
testcase_31 AC 282 ms
58,732 KB
testcase_32 AC 1,037 ms
58,424 KB
testcase_33 AC 1,046 ms
58,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int N = Integer.parseInt(sc.next());
        int M = Integer.parseInt(sc.next());

        List<Integer> candies = new ArrayList<>();

        for (int i = 0; i < N; i++) {
            candies.add(Integer.parseInt(sc.next()));
        }
        Collections.sort(candies);

        int index = 0;
        for (int i = 0; i < M; i++) {
            if (candies.get(index) == 0) index++;
            int tmp = candies.get(index);
            candies.remove(index);
            candies.add(tmp - 1);
            Collections.sort(candies);
        }

        final int[] cnt = {0};
        candies.forEach(integer -> {
            if (integer == 0) cnt[0]++;
        });

        System.out.println(cnt[0]);
    }
}
0