結果

問題 No.156 キャンディー・ボックス
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-01-25 23:59:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 669 bytes
コンパイル時間 1,809 ms
コンパイル使用メモリ 74,872 KB
実行使用メモリ 55,756 KB
最終ジャッジ日時 2024-06-02 12:16:38
合計ジャッジ時間 6,682 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 107 ms
40,720 KB
testcase_03 AC 113 ms
41,488 KB
testcase_04 AC 119 ms
41,156 KB
testcase_05 WA -
testcase_06 AC 116 ms
41,356 KB
testcase_07 AC 116 ms
41,476 KB
testcase_08 AC 107 ms
41,328 KB
testcase_09 AC 109 ms
41,184 KB
testcase_10 AC 113 ms
40,776 KB
testcase_11 AC 101 ms
41,532 KB
testcase_12 AC 114 ms
41,040 KB
testcase_13 AC 110 ms
41,456 KB
testcase_14 AC 114 ms
41,188 KB
testcase_15 AC 112 ms
41,356 KB
testcase_16 AC 114 ms
41,168 KB
testcase_17 AC 118 ms
41,020 KB
testcase_18 WA -
testcase_19 AC 120 ms
41,372 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 115 ms
41,068 KB
testcase_24 AC 115 ms
41,136 KB
testcase_25 AC 104 ms
40,272 KB
testcase_26 AC 102 ms
40,192 KB
testcase_27 AC 113 ms
41,148 KB
testcase_28 WA -
testcase_29 AC 107 ms
41,228 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 115 ms
41,196 KB
testcase_33 AC 110 ms
40,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int m = in.nextInt();
        int[] c = new int[n];
        for(int i=0; i<n; i++) {
            c[i] = in.nextInt();
        }

        int cnt = 0;

        for(int i=0; i<n; i++) {
            int taken = Math.min(m, c[i]);

            c[i] -= taken;
            m -= taken;

            if(c[i] == 0) {
                cnt++;
            }
        }

        System.out.println(cnt);

        in.close();
    }
}
0