結果

問題 No.5 数字のブロック
ユーザー tk55513tk55513
提出日時 2020-09-05 21:55:03
言語 Java
(openjdk 23)
結果
AC  
実行時間 245 ms / 5,000 ms
コード長 570 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 74,376 KB
実行使用メモリ 59,084 KB
最終ジャッジ日時 2024-11-29 06:10:44
合計ジャッジ時間 8,604 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,172 KB
testcase_01 AC 116 ms
53,948 KB
testcase_02 AC 120 ms
54,252 KB
testcase_03 AC 217 ms
58,024 KB
testcase_04 AC 202 ms
57,592 KB
testcase_05 AC 237 ms
58,700 KB
testcase_06 AC 200 ms
57,648 KB
testcase_07 AC 209 ms
57,352 KB
testcase_08 AC 219 ms
58,224 KB
testcase_09 AC 185 ms
56,752 KB
testcase_10 AC 228 ms
58,544 KB
testcase_11 AC 213 ms
57,512 KB
testcase_12 AC 227 ms
58,400 KB
testcase_13 AC 229 ms
58,552 KB
testcase_14 AC 128 ms
54,148 KB
testcase_15 AC 135 ms
54,248 KB
testcase_16 AC 226 ms
58,560 KB
testcase_17 AC 233 ms
58,424 KB
testcase_18 AC 245 ms
58,804 KB
testcase_19 AC 245 ms
59,084 KB
testcase_20 AC 108 ms
53,868 KB
testcase_21 AC 121 ms
54,040 KB
testcase_22 AC 108 ms
53,240 KB
testcase_23 AC 109 ms
53,632 KB
testcase_24 AC 146 ms
54,236 KB
testcase_25 AC 148 ms
54,272 KB
testcase_26 AC 116 ms
53,992 KB
testcase_27 AC 113 ms
53,612 KB
testcase_28 AC 116 ms
54,136 KB
testcase_29 AC 204 ms
57,492 KB
testcase_30 AC 178 ms
56,228 KB
testcase_31 AC 120 ms
54,044 KB
testcase_32 AC 117 ms
54,188 KB
testcase_33 AC 117 ms
54,132 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