結果

問題 No.5 数字のブロック
ユーザー yshrnsmryshrnsmr
提出日時 2017-03-07 00:02:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 271 ms / 5,000 ms
コード長 650 bytes
コンパイル時間 2,057 ms
コンパイル使用メモリ 74,460 KB
実行使用メモリ 47,880 KB
最終ジャッジ日時 2024-04-29 08:52:05
合計ジャッジ時間 9,415 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,056 KB
testcase_01 AC 131 ms
41,324 KB
testcase_02 AC 129 ms
41,228 KB
testcase_03 AC 223 ms
46,816 KB
testcase_04 AC 217 ms
45,648 KB
testcase_05 AC 251 ms
46,740 KB
testcase_06 AC 225 ms
46,192 KB
testcase_07 AC 220 ms
45,992 KB
testcase_08 AC 232 ms
46,884 KB
testcase_09 AC 196 ms
43,496 KB
testcase_10 AC 260 ms
47,724 KB
testcase_11 AC 219 ms
46,108 KB
testcase_12 AC 241 ms
46,548 KB
testcase_13 AC 246 ms
46,364 KB
testcase_14 AC 141 ms
41,480 KB
testcase_15 AC 154 ms
41,756 KB
testcase_16 AC 255 ms
46,504 KB
testcase_17 AC 265 ms
47,880 KB
testcase_18 AC 266 ms
47,664 KB
testcase_19 AC 271 ms
47,556 KB
testcase_20 AC 130 ms
41,188 KB
testcase_21 AC 131 ms
41,232 KB
testcase_22 AC 127 ms
41,180 KB
testcase_23 AC 130 ms
41,352 KB
testcase_24 AC 150 ms
41,724 KB
testcase_25 AC 177 ms
42,040 KB
testcase_26 AC 130 ms
41,204 KB
testcase_27 AC 128 ms
41,348 KB
testcase_28 AC 114 ms
40,144 KB
testcase_29 AC 223 ms
45,320 KB
testcase_30 AC 200 ms
43,616 KB
testcase_31 AC 117 ms
41,372 KB
testcase_32 AC 118 ms
41,580 KB
testcase_33 AC 127 ms
41,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

        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