結果

問題 No.5 数字のブロック
ユーザー トミートミー
提出日時 2024-03-31 19:28:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 270 ms / 5,000 ms
コード長 572 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 77,964 KB
実行使用メモリ 59,000 KB
最終ジャッジ日時 2024-09-30 21:19:06
合計ジャッジ時間 9,704 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,188 KB
testcase_01 AC 130 ms
53,952 KB
testcase_02 AC 132 ms
54,288 KB
testcase_03 AC 246 ms
57,640 KB
testcase_04 AC 224 ms
57,552 KB
testcase_05 AC 257 ms
58,904 KB
testcase_06 AC 231 ms
57,812 KB
testcase_07 AC 228 ms
57,608 KB
testcase_08 AC 242 ms
58,388 KB
testcase_09 AC 201 ms
56,652 KB
testcase_10 AC 247 ms
58,152 KB
testcase_11 AC 224 ms
57,732 KB
testcase_12 AC 246 ms
58,532 KB
testcase_13 AC 249 ms
58,232 KB
testcase_14 AC 140 ms
54,020 KB
testcase_15 AC 162 ms
54,380 KB
testcase_16 AC 252 ms
58,380 KB
testcase_17 AC 256 ms
58,832 KB
testcase_18 AC 265 ms
58,364 KB
testcase_19 AC 270 ms
59,000 KB
testcase_20 AC 138 ms
54,220 KB
testcase_21 AC 137 ms
53,924 KB
testcase_22 AC 139 ms
54,272 KB
testcase_23 AC 137 ms
54,100 KB
testcase_24 AC 156 ms
54,144 KB
testcase_25 AC 181 ms
54,356 KB
testcase_26 AC 134 ms
54,168 KB
testcase_27 AC 133 ms
54,176 KB
testcase_28 AC 133 ms
53,888 KB
testcase_29 AC 220 ms
57,332 KB
testcase_30 AC 209 ms
56,716 KB
testcase_31 AC 140 ms
53,860 KB
testcase_32 AC 133 ms
54,332 KB
testcase_33 AC 133 ms
54,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        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();
        }
        sc.close();
        Arrays.sort(w);
        int cnt = 0;
        int sum = 0;
        for (cnt = 0; cnt < n && sum <= l; cnt++) {
            sum += w[cnt];
        }
        if (sum > l) {
            cnt--;
        }
        System.out.println(cnt);

    }
}
0