結果

問題 No.5 数字のブロック
ユーザー yshrnsmryshrnsmr
提出日時 2017-03-07 00:02:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 250 ms / 5,000 ms
コード長 650 bytes
コンパイル時間 2,157 ms
コンパイル使用メモリ 74,792 KB
実行使用メモリ 58,896 KB
最終ジャッジ日時 2024-11-18 10:56:39
合計ジャッジ時間 9,195 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
53,040 KB
testcase_01 AC 107 ms
53,164 KB
testcase_02 AC 119 ms
54,176 KB
testcase_03 AC 217 ms
58,024 KB
testcase_04 AC 209 ms
57,496 KB
testcase_05 AC 227 ms
58,532 KB
testcase_06 AC 209 ms
58,088 KB
testcase_07 AC 203 ms
57,456 KB
testcase_08 AC 219 ms
58,600 KB
testcase_09 AC 182 ms
56,660 KB
testcase_10 AC 233 ms
58,200 KB
testcase_11 AC 202 ms
57,664 KB
testcase_12 AC 223 ms
58,568 KB
testcase_13 AC 231 ms
58,220 KB
testcase_14 AC 134 ms
54,276 KB
testcase_15 AC 152 ms
54,100 KB
testcase_16 AC 249 ms
58,780 KB
testcase_17 AC 249 ms
58,888 KB
testcase_18 AC 243 ms
58,896 KB
testcase_19 AC 250 ms
58,724 KB
testcase_20 AC 125 ms
54,028 KB
testcase_21 AC 122 ms
54,084 KB
testcase_22 AC 121 ms
54,328 KB
testcase_23 AC 124 ms
54,040 KB
testcase_24 AC 151 ms
54,264 KB
testcase_25 AC 156 ms
54,460 KB
testcase_26 AC 110 ms
53,008 KB
testcase_27 AC 124 ms
54,124 KB
testcase_28 AC 108 ms
52,960 KB
testcase_29 AC 193 ms
57,392 KB
testcase_30 AC 185 ms
56,388 KB
testcase_31 AC 106 ms
52,868 KB
testcase_32 AC 127 ms
53,092 KB
testcase_33 AC 105 ms
52,992 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