結果

問題 No.5 数字のブロック
ユーザー yagi2yagi2
提出日時 2017-04-26 12:54:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 236 ms / 5,000 ms
コード長 790 bytes
コンパイル時間 2,489 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 47,076 KB
最終ジャッジ日時 2024-04-29 08:56:02
合計ジャッジ時間 8,612 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,376 KB
testcase_01 AC 114 ms
41,228 KB
testcase_02 AC 112 ms
41,164 KB
testcase_03 AC 213 ms
45,472 KB
testcase_04 AC 196 ms
43,436 KB
testcase_05 AC 219 ms
46,128 KB
testcase_06 AC 191 ms
44,564 KB
testcase_07 AC 185 ms
43,532 KB
testcase_08 AC 198 ms
44,348 KB
testcase_09 AC 181 ms
42,168 KB
testcase_10 AC 227 ms
46,924 KB
testcase_11 AC 192 ms
43,712 KB
testcase_12 AC 202 ms
45,044 KB
testcase_13 AC 206 ms
45,992 KB
testcase_14 AC 127 ms
41,564 KB
testcase_15 AC 144 ms
41,656 KB
testcase_16 AC 208 ms
46,172 KB
testcase_17 AC 234 ms
46,968 KB
testcase_18 AC 230 ms
47,076 KB
testcase_19 AC 236 ms
46,868 KB
testcase_20 AC 112 ms
41,072 KB
testcase_21 AC 117 ms
41,200 KB
testcase_22 AC 116 ms
41,140 KB
testcase_23 AC 106 ms
41,120 KB
testcase_24 AC 135 ms
41,448 KB
testcase_25 AC 159 ms
41,888 KB
testcase_26 AC 121 ms
41,320 KB
testcase_27 AC 120 ms
41,300 KB
testcase_28 AC 117 ms
41,224 KB
testcase_29 AC 191 ms
43,724 KB
testcase_30 AC 186 ms
42,636 KB
testcase_31 AC 129 ms
40,948 KB
testcase_32 AC 122 ms
41,080 KB
testcase_33 AC 120 ms
41,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder.No5;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int L = Integer.parseInt(sc.next());
        int N = Integer.parseInt(sc.next());

        List<Integer> blocks = new ArrayList<>();
        for (int i = 0; i < N; i++) {
            blocks.add(Integer.parseInt(sc.next()));
        }
        Collections.sort(blocks);

        int ans = 0;
        for (int i = 0; i < N; i++) {
            if (L - blocks.get(i) >= 0) {
                ans++;
                L -= blocks.get(i);
            } else {
                break;
            }
        }

        System.out.println(ans);
    }
}
0