結果

問題 No.5 数字のブロック
ユーザー Ryugo AbeRyugo Abe
提出日時 2016-12-15 14:42:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 298 ms / 5,000 ms
コード長 790 bytes
コンパイル時間 2,280 ms
コンパイル使用メモリ 75,920 KB
実行使用メモリ 47,812 KB
最終ジャッジ日時 2024-04-29 08:44:57
合計ジャッジ時間 9,699 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,048 KB
testcase_01 AC 128 ms
40,976 KB
testcase_02 AC 128 ms
41,204 KB
testcase_03 AC 255 ms
46,176 KB
testcase_04 AC 229 ms
45,700 KB
testcase_05 AC 270 ms
46,440 KB
testcase_06 AC 241 ms
46,352 KB
testcase_07 AC 227 ms
45,980 KB
testcase_08 AC 245 ms
45,988 KB
testcase_09 AC 207 ms
43,444 KB
testcase_10 AC 274 ms
47,812 KB
testcase_11 AC 233 ms
45,796 KB
testcase_12 AC 247 ms
46,220 KB
testcase_13 AC 270 ms
46,808 KB
testcase_14 AC 144 ms
41,380 KB
testcase_15 AC 164 ms
41,528 KB
testcase_16 AC 257 ms
47,756 KB
testcase_17 AC 298 ms
47,568 KB
testcase_18 AC 292 ms
47,544 KB
testcase_19 AC 295 ms
47,688 KB
testcase_20 AC 115 ms
40,252 KB
testcase_21 AC 135 ms
41,412 KB
testcase_22 AC 117 ms
39,888 KB
testcase_23 AC 128 ms
41,068 KB
testcase_24 AC 150 ms
41,660 KB
testcase_25 AC 179 ms
41,572 KB
testcase_26 AC 128 ms
41,236 KB
testcase_27 AC 116 ms
39,992 KB
testcase_28 AC 116 ms
39,728 KB
testcase_29 AC 224 ms
45,888 KB
testcase_30 AC 207 ms
43,948 KB
testcase_31 AC 113 ms
39,992 KB
testcase_32 AC 118 ms
39,960 KB
testcase_33 AC 131 ms
40,992 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