結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,152 KB
testcase_01 AC 113 ms
41,328 KB
testcase_02 AC 112 ms
41,672 KB
testcase_03 AC 208 ms
46,668 KB
testcase_04 AC 186 ms
45,796 KB
testcase_05 AC 237 ms
47,344 KB
testcase_06 AC 215 ms
46,352 KB
testcase_07 AC 219 ms
45,792 KB
testcase_08 AC 215 ms
46,960 KB
testcase_09 AC 173 ms
43,388 KB
testcase_10 AC 222 ms
47,520 KB
testcase_11 AC 191 ms
46,156 KB
testcase_12 AC 220 ms
46,408 KB
testcase_13 AC 220 ms
47,356 KB
testcase_14 AC 127 ms
41,492 KB
testcase_15 AC 148 ms
41,668 KB
testcase_16 AC 217 ms
47,264 KB
testcase_17 AC 239 ms
47,648 KB
testcase_18 AC 232 ms
47,812 KB
testcase_19 AC 245 ms
47,752 KB
testcase_20 WA -
testcase_21 AC 117 ms
41,300 KB
testcase_22 AC 116 ms
40,256 KB
testcase_23 AC 104 ms
41,240 KB
testcase_24 AC 149 ms
41,692 KB
testcase_25 AC 155 ms
42,216 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 221 ms
45,448 KB
testcase_30 AC 181 ms
43,848 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;
            } else if (l == temp) {
                System.out.println(i+1);
                return;
            }
        }
    }
}

0