結果

問題 No.5 数字のブロック
ユーザー IceEijiIceEiji
提出日時 2019-03-21 15:19:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 862 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 74,284 KB
実行使用メモリ 59,092 KB
最終ジャッジ日時 2024-09-19 01:39:49
合計ジャッジ時間 8,614 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,224 KB
testcase_01 AC 104 ms
53,136 KB
testcase_02 WA -
testcase_03 AC 214 ms
58,620 KB
testcase_04 AC 199 ms
57,376 KB
testcase_05 AC 223 ms
58,072 KB
testcase_06 AC 203 ms
57,680 KB
testcase_07 AC 199 ms
57,568 KB
testcase_08 AC 209 ms
58,564 KB
testcase_09 AC 178 ms
56,784 KB
testcase_10 AC 226 ms
58,844 KB
testcase_11 AC 198 ms
58,008 KB
testcase_12 AC 219 ms
58,640 KB
testcase_13 AC 221 ms
58,864 KB
testcase_14 AC 126 ms
54,292 KB
testcase_15 AC 147 ms
54,404 KB
testcase_16 AC 229 ms
58,900 KB
testcase_17 AC 234 ms
58,504 KB
testcase_18 AC 236 ms
59,044 KB
testcase_19 AC 238 ms
59,092 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 112 ms
54,056 KB
testcase_24 AC 156 ms
54,128 KB
testcase_25 AC 158 ms
54,328 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 190 ms
57,384 KB
testcase_30 AC 176 ms
56,948 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


// 幅Lの箱の中に、高さ1で幅は𝑊𝑖のブロックが最大何個はいるのかを求めるプログラム。
class NumBlocks
{
    public static void main(String[] args)
    {
        Scanner sc = new Scanner(System.in);
        int l = sc.nextInt();
        int n = sc.nextInt();
        int[] intWi = new int[n];
        for (int i = 0; i < n; i++) {
            intWi[i] = sc.nextInt();
        }
        
        // ブロック(intWi)を幅が小さい順に並べる
        Arrays.sort(intWi);
        
        // 小さい順に箱に詰めていき、幅Lをギリギリこえない個数を求める
        int temp = 0;
        for (int i = 0; i < n; i++) {
            temp += intWi[i];
            if (l < temp) {
                System.out.println(i);
                return;
            }
        }
    }
}

0