結果

問題 No.5 数字のブロック
ユーザー l1267976l1267976
提出日時 2017-03-07 13:38:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 272 ms / 5,000 ms
コード長 648 bytes
コンパイル時間 3,439 ms
コンパイル使用メモリ 74,336 KB
実行使用メモリ 47,832 KB
最終ジャッジ日時 2024-04-29 08:51:43
合計ジャッジ時間 10,831 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,700 KB
testcase_01 AC 132 ms
41,148 KB
testcase_02 AC 132 ms
41,376 KB
testcase_03 AC 248 ms
46,784 KB
testcase_04 AC 226 ms
45,444 KB
testcase_05 AC 259 ms
47,316 KB
testcase_06 AC 234 ms
46,012 KB
testcase_07 AC 229 ms
46,136 KB
testcase_08 AC 237 ms
46,572 KB
testcase_09 AC 207 ms
43,592 KB
testcase_10 AC 253 ms
46,640 KB
testcase_11 AC 228 ms
46,072 KB
testcase_12 AC 251 ms
46,412 KB
testcase_13 AC 251 ms
47,072 KB
testcase_14 AC 145 ms
41,600 KB
testcase_15 AC 154 ms
41,932 KB
testcase_16 AC 256 ms
47,132 KB
testcase_17 AC 269 ms
47,476 KB
testcase_18 AC 272 ms
47,832 KB
testcase_19 AC 271 ms
47,304 KB
testcase_20 AC 129 ms
41,476 KB
testcase_21 AC 132 ms
41,344 KB
testcase_22 AC 131 ms
41,132 KB
testcase_23 AC 134 ms
41,216 KB
testcase_24 AC 166 ms
41,608 KB
testcase_25 AC 182 ms
42,256 KB
testcase_26 AC 133 ms
41,080 KB
testcase_27 AC 132 ms
41,404 KB
testcase_28 AC 136 ms
40,968 KB
testcase_29 AC 221 ms
45,496 KB
testcase_30 AC 207 ms
43,976 KB
testcase_31 AC 128 ms
41,536 KB
testcase_32 AC 131 ms
41,024 KB
testcase_33 AC 132 ms
41,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class No5 {

    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();
        }

        Arrays.sort(w);

        int sum = 0;
        int cnt = 0;

        for (int i = 0; i < n; i++) {
            sum += w[i];

            if (sum > l) {
                break;
            } else {
                cnt++;
            }
        }

        System.out.println(cnt);

        sc.close();
    }

}
0