結果

問題 No.5 数字のブロック
ユーザー tk55513tk55513
提出日時 2020-09-05 21:55:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 245 ms / 5,000 ms
コード長 570 bytes
コンパイル時間 1,857 ms
コンパイル使用メモリ 75,776 KB
実行使用メモリ 59,028 KB
最終ジャッジ日時 2024-05-06 20:11:50
合計ジャッジ時間 8,655 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
53,136 KB
testcase_01 AC 120 ms
54,288 KB
testcase_02 AC 118 ms
54,204 KB
testcase_03 AC 226 ms
58,208 KB
testcase_04 AC 188 ms
57,456 KB
testcase_05 AC 235 ms
58,496 KB
testcase_06 AC 215 ms
58,184 KB
testcase_07 AC 196 ms
57,584 KB
testcase_08 AC 221 ms
58,276 KB
testcase_09 AC 188 ms
57,096 KB
testcase_10 AC 240 ms
58,076 KB
testcase_11 AC 203 ms
58,028 KB
testcase_12 AC 221 ms
58,016 KB
testcase_13 AC 238 ms
59,000 KB
testcase_14 AC 131 ms
53,976 KB
testcase_15 AC 157 ms
54,240 KB
testcase_16 AC 245 ms
58,756 KB
testcase_17 AC 243 ms
59,028 KB
testcase_18 AC 240 ms
58,188 KB
testcase_19 AC 244 ms
58,788 KB
testcase_20 AC 111 ms
53,396 KB
testcase_21 AC 119 ms
54,212 KB
testcase_22 AC 112 ms
53,584 KB
testcase_23 AC 119 ms
54,216 KB
testcase_24 AC 141 ms
53,988 KB
testcase_25 AC 159 ms
54,248 KB
testcase_26 AC 119 ms
54,308 KB
testcase_27 AC 116 ms
54,112 KB
testcase_28 AC 118 ms
54,272 KB
testcase_29 AC 197 ms
57,660 KB
testcase_30 AC 179 ms
56,700 KB
testcase_31 AC 117 ms
54,288 KB
testcase_32 AC 118 ms
54,212 KB
testcase_33 AC 108 ms
52,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args ) throws Exception {
        Scanner sc = new Scanner(System.in);
        int l = sc.nextInt();
        int n = sc.nextInt();
        int[] w = new int[n];
        for (int i = 0; i < n; i++) {
            w[i] = sc.nextInt();
        }
        Arrays.sort(w);
        for (int i = 0; i < w.length; i++) {
            if (l - w[i] < 0) {
                System.out.println(i);
                return;
            }
            l -= w[i];
        }
        System.out.println(n);

    }
}
0