結果

問題 No.5 数字のブロック
ユーザー tsunabittsunabit
提出日時 2018-04-15 11:48:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 284 ms / 5,000 ms
コード長 1,839 bytes
コンパイル時間 3,472 ms
コンパイル使用メモリ 76,988 KB
実行使用メモリ 59,244 KB
最終ジャッジ日時 2024-11-18 12:17:25
合計ジャッジ時間 11,039 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,976 KB
testcase_01 AC 130 ms
54,308 KB
testcase_02 AC 133 ms
54,064 KB
testcase_03 AC 253 ms
58,192 KB
testcase_04 AC 223 ms
57,572 KB
testcase_05 AC 254 ms
58,872 KB
testcase_06 AC 249 ms
57,864 KB
testcase_07 AC 224 ms
57,952 KB
testcase_08 AC 246 ms
58,256 KB
testcase_09 AC 198 ms
56,780 KB
testcase_10 AC 266 ms
59,012 KB
testcase_11 AC 227 ms
57,888 KB
testcase_12 AC 253 ms
58,068 KB
testcase_13 AC 257 ms
58,688 KB
testcase_14 AC 151 ms
54,068 KB
testcase_15 AC 159 ms
54,152 KB
testcase_16 AC 257 ms
58,484 KB
testcase_17 AC 284 ms
58,964 KB
testcase_18 AC 268 ms
58,396 KB
testcase_19 AC 277 ms
59,244 KB
testcase_20 AC 126 ms
53,980 KB
testcase_21 AC 127 ms
54,040 KB
testcase_22 AC 129 ms
53,936 KB
testcase_23 AC 134 ms
53,956 KB
testcase_24 AC 170 ms
54,284 KB
testcase_25 AC 176 ms
54,280 KB
testcase_26 AC 129 ms
54,108 KB
testcase_27 AC 135 ms
54,044 KB
testcase_28 AC 130 ms
54,204 KB
testcase_29 AC 224 ms
57,512 KB
testcase_30 AC 207 ms
56,576 KB
testcase_31 AC 124 ms
53,844 KB
testcase_32 AC 131 ms
54,088 KB
testcase_33 AC 129 ms
54,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

// 問題文
// Ellenは数字のブロックで遊ぼうとしている。
// 数字が書かれているブロックはそれぞれ高さ1で幅はWi である。
// (同じ幅のブロックが複数存在することがある。)
// それらのブロックを高さ1,幅Lの箱の中に入れる。 
// Ellenは大きな箱にどれだけブロックがたくさん入るか気になったが。
// 組み合わせがたくさんあって大変なことに気づいて、すぐに夜になってしまいそうである。
// あなたは、代わりに大きな箱に最大何個のブロックが入るかを求めてください。
// ***
// 入力
// L
// N
// W1W2W3…WN
// 1行目は、大きな箱の幅を表すL(1≤L≤10000)が与えられます。
// 2行目は、ブロックの数を表すN(1≤N≤10000)
// 3行目は、各ブロックの幅を表すWi(1≤Wi≤L)が半角スペース区切りで与えられます。
// ***
// 出力
// 求めた数値を返してください。末尾に改行を付けてください。

public class No5 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        int L = sc.nextInt(); // 箱の幅
        int N = sc.nextInt(); // ブロックの数

        ArrayList<Integer> al = new ArrayList<Integer>();
        for(int i = 0; i < N; i++) {
            al.add(sc.nextInt());
        }
        // 並び替え
        Collections.sort(al);
        int total = 0;
        int count = 0;
        while(count < N && (total + al.get(count)) <= L) {
            total += al.get(count);
            count++;
        }
        System.out.println(count);
    }
}
0