結果

問題 No.5 数字のブロック
ユーザー トミートミー
提出日時 2024-03-31 19:21:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 527 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 74,584 KB
実行使用メモリ 59,196 KB
最終ジャッジ日時 2024-09-30 21:18:34
合計ジャッジ時間 9,762 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,712 KB
testcase_01 AC 127 ms
54,080 KB
testcase_02 WA -
testcase_03 AC 232 ms
57,988 KB
testcase_04 AC 207 ms
57,168 KB
testcase_05 AC 256 ms
58,780 KB
testcase_06 AC 220 ms
57,640 KB
testcase_07 AC 212 ms
57,628 KB
testcase_08 AC 239 ms
58,384 KB
testcase_09 AC 201 ms
56,924 KB
testcase_10 AC 249 ms
58,488 KB
testcase_11 AC 227 ms
57,392 KB
testcase_12 AC 235 ms
58,252 KB
testcase_13 AC 247 ms
58,536 KB
testcase_14 AC 142 ms
54,576 KB
testcase_15 AC 151 ms
54,048 KB
testcase_16 AC 258 ms
58,896 KB
testcase_17 AC 260 ms
59,000 KB
testcase_18 AC 263 ms
59,040 KB
testcase_19 AC 276 ms
59,196 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 131 ms
54,068 KB
testcase_24 AC 158 ms
54,544 KB
testcase_25 AC 178 ms
54,240 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 218 ms
57,448 KB
testcase_30 AC 199 ms
56,652 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

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];
        }
        System.out.println(cnt - 1);

    }
}
0