結果

問題 No.5 数字のブロック
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-01-10 11:30:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 267 ms / 5,000 ms
コード長 579 bytes
コンパイル時間 1,935 ms
コンパイル使用メモリ 76,528 KB
実行使用メモリ 59,680 KB
最終ジャッジ日時 2024-11-18 08:04:08
合計ジャッジ時間 8,932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,012 KB
testcase_01 AC 122 ms
54,136 KB
testcase_02 AC 121 ms
54,080 KB
testcase_03 AC 233 ms
58,736 KB
testcase_04 AC 211 ms
57,724 KB
testcase_05 AC 252 ms
58,312 KB
testcase_06 AC 222 ms
57,700 KB
testcase_07 AC 216 ms
59,680 KB
testcase_08 AC 224 ms
58,224 KB
testcase_09 AC 187 ms
56,796 KB
testcase_10 AC 259 ms
58,932 KB
testcase_11 AC 203 ms
57,528 KB
testcase_12 AC 221 ms
58,372 KB
testcase_13 AC 239 ms
58,688 KB
testcase_14 AC 132 ms
54,144 KB
testcase_15 AC 149 ms
53,932 KB
testcase_16 AC 248 ms
58,856 KB
testcase_17 AC 259 ms
58,664 KB
testcase_18 AC 255 ms
58,120 KB
testcase_19 AC 267 ms
59,108 KB
testcase_20 AC 120 ms
54,080 KB
testcase_21 AC 112 ms
53,468 KB
testcase_22 AC 115 ms
53,976 KB
testcase_23 AC 105 ms
53,900 KB
testcase_24 AC 145 ms
54,172 KB
testcase_25 AC 168 ms
54,372 KB
testcase_26 AC 109 ms
52,964 KB
testcase_27 AC 119 ms
53,816 KB
testcase_28 AC 117 ms
53,968 KB
testcase_29 AC 210 ms
57,472 KB
testcase_30 AC 193 ms
56,704 KB
testcase_31 AC 121 ms
54,068 KB
testcase_32 AC 108 ms
53,112 KB
testcase_33 AC 121 ms
54,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Test {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        ArrayList<Integer> W = new ArrayList<>();

        int L = in.nextInt();
        int N = in.nextInt();
        for(int i = 0; i < N; i++) {
            W.add(in.nextInt());
        }
        Collections.sort(W);
        int i = 0;
        while(L >= 0 && i < N) {
            L = L - W.get(i);
            if(L >= 0) {
                i++;
            } else {
                break;
            }
        }

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