結果

問題 No.156 キャンディー・ボックス
ユーザー mobius_bkstmobius_bkst
提出日時 2015-04-20 20:42:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,016 bytes
コンパイル時間 3,074 ms
コンパイル使用メモリ 81,800 KB
実行使用メモリ 37,456 KB
最終ジャッジ日時 2024-07-04 18:41:44
合計ジャッジ時間 5,784 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 46 ms
36,704 KB
testcase_03 AC 47 ms
36,616 KB
testcase_04 AC 47 ms
36,736 KB
testcase_05 AC 47 ms
36,516 KB
testcase_06 AC 46 ms
36,692 KB
testcase_07 AC 45 ms
36,932 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 46 ms
36,564 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 46 ms
36,824 KB
testcase_15 AC 46 ms
36,864 KB
testcase_16 AC 46 ms
36,932 KB
testcase_17 AC 45 ms
36,560 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 44 ms
36,788 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 45 ms
37,024 KB
testcase_27 AC 46 ms
36,576 KB
testcase_28 AC 45 ms
36,788 KB
testcase_29 AC 47 ms
36,736 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 46 ms
36,720 KB
testcase_33 AC 47 ms
36,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class No156 {


    public static void main(String[] args) {
        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            String[] nm = br.readLine().split(" ");
            int N = Integer.parseInt(nm[0]);
            int M = Integer.parseInt(nm[1]);

            String[] CStr = br.readLine().split(" ");
            int[] C = new int[N];
            for (int i = 0; i < N; i++) {
                C[i] = Integer.parseInt(CStr[1]);
            }

            int emptyCount = 0;
            for (int i = 0; i < C.length; i++) {

                if (C[i] <= M) {
                    M = M - C[i];
                    emptyCount++;
                } else {
                    break;
                }

            }

            System.out.println(emptyCount);
        } catch (Exception e) {
            System.err.println("Error:" + e.getMessage());
        }
    }

}
0