結果

問題 No.5 数字のブロック
ユーザー mt09spmt09sp
提出日時 2023-04-25 18:29:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 220 ms / 5,000 ms
コード長 1,234 bytes
コンパイル時間 3,032 ms
コンパイル使用メモリ 75,588 KB
実行使用メモリ 55,560 KB
最終ジャッジ日時 2024-11-14 14:38:03
合計ジャッジ時間 9,545 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,024 KB
testcase_01 AC 132 ms
54,092 KB
testcase_02 AC 131 ms
54,088 KB
testcase_03 AC 200 ms
55,256 KB
testcase_04 AC 179 ms
53,996 KB
testcase_05 AC 209 ms
55,364 KB
testcase_06 AC 198 ms
54,732 KB
testcase_07 AC 190 ms
54,224 KB
testcase_08 AC 199 ms
54,720 KB
testcase_09 AC 181 ms
53,976 KB
testcase_10 AC 210 ms
55,184 KB
testcase_11 AC 178 ms
54,360 KB
testcase_12 AC 197 ms
54,900 KB
testcase_13 AC 210 ms
55,240 KB
testcase_14 AC 133 ms
54,116 KB
testcase_15 AC 135 ms
54,220 KB
testcase_16 AC 210 ms
55,256 KB
testcase_17 AC 220 ms
55,460 KB
testcase_18 AC 210 ms
55,560 KB
testcase_19 AC 216 ms
55,392 KB
testcase_20 AC 130 ms
54,196 KB
testcase_21 AC 130 ms
54,048 KB
testcase_22 AC 130 ms
54,120 KB
testcase_23 AC 132 ms
54,200 KB
testcase_24 AC 138 ms
54,140 KB
testcase_25 AC 146 ms
54,112 KB
testcase_26 AC 130 ms
54,228 KB
testcase_27 AC 138 ms
53,840 KB
testcase_28 AC 134 ms
53,984 KB
testcase_29 AC 179 ms
54,024 KB
testcase_30 AC 175 ms
54,296 KB
testcase_31 AC 130 ms
54,200 KB
testcase_32 AC 129 ms
54,240 KB
testcase_33 AC 130 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

public class Main {
    public static void main(String[] args) {
        // 入力を受け取る
        Scanner scan = new Scanner(System.in);
        String strL = scan.nextLine();
        String strN = scan.nextLine();
        String strW = scan.nextLine();
        scan.close();
        // 値を受け取る
        int boxLength = Integer.parseInt(strL);
        int blockNum = Integer.parseInt(strN);
        String[] arrW = strW.split(" ");
        int[] blockWidths = new int[arrW.length];
        for(int i = 0; i < arrW.length; i++) {
            blockWidths[i] = Integer.parseInt(arrW[i]);
        }
        // 計算
        int totalBlockWidths = 0;
        int count = 0;
        Arrays.sort(blockWidths);
        for (int i = 0; i < blockWidths.length; i++) {
        // ブロックを小さい順に箱へ足していく
            totalBlockWidths += blockWidths[i];
        // 箱にブロックが入らなくなったときループ終了
            if(boxLength < totalBlockWidths) {
                break;
            }
            count ++;
        }
        // 箱に入る最大のブロック個数を出力
        System.out.println(count);
    }
}
0