結果

問題 No.156 キャンディー・ボックス
ユーザー tsunabittsunabit
提出日時 2018-05-07 18:38:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,514 bytes
コンパイル時間 4,111 ms
コンパイル使用メモリ 80,012 KB
実行使用メモリ 42,024 KB
最終ジャッジ日時 2024-06-28 02:19:05
合計ジャッジ時間 9,699 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 139 ms
41,628 KB
testcase_03 AC 137 ms
42,024 KB
testcase_04 AC 136 ms
41,580 KB
testcase_05 WA -
testcase_06 AC 137 ms
41,300 KB
testcase_07 AC 137 ms
41,652 KB
testcase_08 AC 137 ms
41,604 KB
testcase_09 AC 134 ms
41,516 KB
testcase_10 AC 135 ms
41,312 KB
testcase_11 AC 138 ms
41,556 KB
testcase_12 AC 136 ms
41,556 KB
testcase_13 AC 136 ms
41,544 KB
testcase_14 AC 137 ms
41,592 KB
testcase_15 AC 138 ms
41,340 KB
testcase_16 AC 138 ms
41,424 KB
testcase_17 AC 136 ms
41,540 KB
testcase_18 WA -
testcase_19 AC 136 ms
41,348 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 135 ms
41,516 KB
testcase_24 AC 135 ms
41,672 KB
testcase_25 AC 135 ms
41,628 KB
testcase_26 AC 137 ms
41,624 KB
testcase_27 AC 139 ms
41,436 KB
testcase_28 WA -
testcase_29 AC 136 ms
41,552 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 140 ms
41,756 KB
testcase_33 AC 139 ms
41,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.Stream;
import java.util.Arrays;

// ***問題文***
// キャンディーが入っている箱がN個ある。
// i番目の箱にはCi個のキャンディーが入っている。
// A君は、その時の最もキャンディーの少ない箱から1つキャンディーを取っていく。
// これを合計M個のキャンディーを取り終えるまで繰り返す。
// M個のキャンディーを取り出した時に、空になった箱の数はいくつか?
// ***入力***
// N M
// C1 C2 … CN
// 1≤N≤10
// 1≤M≤1000000
// 1≤Ci≤100000
// Mは最初のキャンディーの総数以下の数字が与えられる。
// ***出力***
// M個のキャンディーを取ったあとに空になった箱の数を1行で答えよ。
// 最後に改行を忘れずに。

public class No156 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        // int n = sc.nextInt();
        // int m = sc.nextInt();
        // 2行目をnextLineで読み込むため、数値もnextLineで読み込む
        // int n = Integer.parseInt(sc.nextLine());
        // 新しいstreamを作成し、各要素をintに変換
        // int[] x = Stream.of(sc.nextLine().split(" " , 0)).mapToInt(Integer::parseInt).toArray();
        // int f = Integer.parseInt(sc.next().replace(".", ""));
        // int s = Integer.parseInt(sc.next().replace(".", ""));
        int[] nm = Stream.of(sc.nextLine().split(" " , 0)).mapToInt(Integer::parseInt).toArray();
        int[] c = Stream.of(sc.nextLine().split(" " , 0)).mapToInt(Integer::parseInt).toArray();
        int total = 0;
        int count = 0;
        for(int i = 0; i < nm[0]; i++) {
            total += c[i];
            if(total > nm[1]) {
                count = i;
                break;
            }else if(total == nm[1]) {
                count = i + 1;
                break;
            }
        }
        System.out.println(count);
        // ------------------------------------------------------------
        // System.out.println("n = " + f);
        // System.out.println("n = " + s);
        // System.out.println("n = " + fa.length);
        // for(int i = 0; i < f.length; i++) {
        //     System.out.println("[" + i + "] = " + f[i]);
        // }
        // for(int a: x) {
        //     System.out.println("x = " + x);
        // }
    }
}
0