結果

問題 No.5 数字のブロック
ユーザー l1267976l1267976
提出日時 2017-03-07 13:38:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 278 ms / 5,000 ms
コード長 648 bytes
コンパイル時間 3,497 ms
コンパイル使用メモリ 75,548 KB
実行使用メモリ 58,984 KB
最終ジャッジ日時 2024-11-18 10:56:03
合計ジャッジ時間 11,324 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,992 KB
testcase_01 AC 135 ms
53,916 KB
testcase_02 AC 135 ms
54,204 KB
testcase_03 AC 245 ms
57,560 KB
testcase_04 AC 233 ms
57,412 KB
testcase_05 AC 259 ms
58,028 KB
testcase_06 AC 238 ms
57,820 KB
testcase_07 AC 234 ms
57,596 KB
testcase_08 AC 252 ms
58,204 KB
testcase_09 AC 204 ms
56,624 KB
testcase_10 AC 263 ms
58,300 KB
testcase_11 AC 230 ms
57,668 KB
testcase_12 AC 256 ms
58,536 KB
testcase_13 AC 262 ms
58,960 KB
testcase_14 AC 146 ms
54,404 KB
testcase_15 AC 158 ms
54,548 KB
testcase_16 AC 260 ms
58,400 KB
testcase_17 AC 277 ms
58,444 KB
testcase_18 AC 275 ms
58,860 KB
testcase_19 AC 278 ms
58,984 KB
testcase_20 AC 134 ms
54,252 KB
testcase_21 AC 132 ms
54,368 KB
testcase_22 AC 131 ms
53,984 KB
testcase_23 AC 132 ms
54,388 KB
testcase_24 AC 161 ms
54,300 KB
testcase_25 AC 179 ms
54,264 KB
testcase_26 AC 142 ms
54,136 KB
testcase_27 AC 137 ms
53,968 KB
testcase_28 AC 132 ms
53,832 KB
testcase_29 AC 231 ms
57,540 KB
testcase_30 AC 210 ms
56,696 KB
testcase_31 AC 138 ms
54,104 KB
testcase_32 AC 141 ms
54,164 KB
testcase_33 AC 141 ms
54,148 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