結果

問題 No.5 数字のブロック
ユーザー Ryugo AbeRyugo Abe
提出日時 2016-12-15 14:42:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 269 ms / 5,000 ms
コード長 790 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 76,388 KB
実行使用メモリ 48,064 KB
最終ジャッジ日時 2024-11-18 10:48:37
合計ジャッジ時間 9,024 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,460 KB
testcase_01 AC 122 ms
39,968 KB
testcase_02 AC 119 ms
41,432 KB
testcase_03 AC 228 ms
46,892 KB
testcase_04 AC 208 ms
45,876 KB
testcase_05 AC 257 ms
46,028 KB
testcase_06 AC 220 ms
46,380 KB
testcase_07 AC 214 ms
45,840 KB
testcase_08 AC 238 ms
46,284 KB
testcase_09 AC 193 ms
43,376 KB
testcase_10 AC 257 ms
48,064 KB
testcase_11 AC 204 ms
45,728 KB
testcase_12 AC 224 ms
46,904 KB
testcase_13 AC 243 ms
46,716 KB
testcase_14 AC 128 ms
41,424 KB
testcase_15 AC 155 ms
41,568 KB
testcase_16 AC 257 ms
47,472 KB
testcase_17 AC 268 ms
47,740 KB
testcase_18 AC 264 ms
47,900 KB
testcase_19 AC 269 ms
47,944 KB
testcase_20 AC 105 ms
41,308 KB
testcase_21 AC 121 ms
41,468 KB
testcase_22 AC 117 ms
41,344 KB
testcase_23 AC 125 ms
41,396 KB
testcase_24 AC 155 ms
41,704 KB
testcase_25 AC 164 ms
42,212 KB
testcase_26 AC 120 ms
41,536 KB
testcase_27 AC 120 ms
41,376 KB
testcase_28 AC 117 ms
41,468 KB
testcase_29 AC 212 ms
46,012 KB
testcase_30 AC 193 ms
43,620 KB
testcase_31 AC 112 ms
41,408 KB
testcase_32 AC 125 ms
41,440 KB
testcase_33 AC 127 ms
41,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int boxWidth = sc.nextInt();
        int numBlock = sc.nextInt();

        List<Integer> blockWidthList = new ArrayList<Integer>();
        for (int i = 0; i < numBlock; i++) {
            blockWidthList.add(sc.nextInt());
        }

        Collections.sort(blockWidthList);
        int count = 0;
        int filledWidth = 0;
        for (Integer width : blockWidthList) {
            filledWidth += width;
            if (filledWidth > boxWidth) {
                break;
            }
            count++;
        }

        System.out.println(count);
    }
}
0