結果

問題 No.156 キャンディー・ボックス
ユーザー tsunabittsunabit
提出日時 2018-05-07 18:41:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 2,563 bytes
コンパイル時間 4,321 ms
コンパイル使用メモリ 80,528 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-07-05 16:18:52
合計ジャッジ時間 9,406 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,252 KB
testcase_01 AC 133 ms
54,424 KB
testcase_02 AC 135 ms
54,224 KB
testcase_03 AC 135 ms
54,432 KB
testcase_04 AC 136 ms
54,252 KB
testcase_05 AC 138 ms
54,124 KB
testcase_06 AC 136 ms
54,120 KB
testcase_07 AC 135 ms
53,920 KB
testcase_08 AC 136 ms
54,132 KB
testcase_09 AC 134 ms
54,104 KB
testcase_10 AC 135 ms
54,276 KB
testcase_11 AC 137 ms
54,192 KB
testcase_12 AC 135 ms
54,400 KB
testcase_13 AC 136 ms
54,184 KB
testcase_14 AC 135 ms
53,876 KB
testcase_15 AC 135 ms
54,420 KB
testcase_16 AC 132 ms
54,168 KB
testcase_17 AC 135 ms
54,168 KB
testcase_18 AC 134 ms
54,172 KB
testcase_19 AC 136 ms
54,336 KB
testcase_20 AC 137 ms
53,984 KB
testcase_21 AC 134 ms
54,140 KB
testcase_22 AC 133 ms
54,140 KB
testcase_23 AC 133 ms
54,232 KB
testcase_24 AC 135 ms
53,980 KB
testcase_25 AC 141 ms
54,108 KB
testcase_26 AC 136 ms
54,140 KB
testcase_27 AC 133 ms
54,308 KB
testcase_28 AC 135 ms
53,980 KB
testcase_29 AC 136 ms
54,144 KB
testcase_30 AC 135 ms
54,256 KB
testcase_31 AC 138 ms
54,136 KB
testcase_32 AC 135 ms
53,880 KB
testcase_33 AC 136 ms
53,980 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();
        // 配列をsort
        Arrays.sort(c);
        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