結果

問題 No.5 数字のブロック
ユーザー yagi2yagi2
提出日時 2017-04-26 12:54:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 224 ms / 5,000 ms
コード長 790 bytes
コンパイル時間 1,917 ms
コンパイル使用メモリ 76,208 KB
実行使用メモリ 58,572 KB
最終ジャッジ日時 2024-11-18 11:00:33
合計ジャッジ時間 8,226 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,144 KB
testcase_01 AC 114 ms
54,168 KB
testcase_02 AC 111 ms
54,012 KB
testcase_03 AC 198 ms
57,532 KB
testcase_04 AC 184 ms
56,888 KB
testcase_05 AC 209 ms
58,188 KB
testcase_06 AC 182 ms
57,488 KB
testcase_07 AC 181 ms
56,880 KB
testcase_08 AC 195 ms
57,256 KB
testcase_09 AC 165 ms
54,404 KB
testcase_10 AC 221 ms
58,412 KB
testcase_11 AC 188 ms
56,872 KB
testcase_12 AC 199 ms
57,128 KB
testcase_13 AC 202 ms
57,884 KB
testcase_14 AC 134 ms
54,264 KB
testcase_15 AC 132 ms
54,072 KB
testcase_16 AC 203 ms
58,116 KB
testcase_17 AC 224 ms
58,452 KB
testcase_18 AC 213 ms
58,572 KB
testcase_19 AC 224 ms
58,372 KB
testcase_20 AC 122 ms
54,000 KB
testcase_21 AC 122 ms
54,128 KB
testcase_22 AC 116 ms
54,024 KB
testcase_23 AC 104 ms
53,020 KB
testcase_24 AC 138 ms
53,960 KB
testcase_25 AC 154 ms
54,480 KB
testcase_26 AC 117 ms
53,828 KB
testcase_27 AC 103 ms
53,944 KB
testcase_28 AC 103 ms
52,956 KB
testcase_29 AC 183 ms
56,752 KB
testcase_30 AC 164 ms
54,352 KB
testcase_31 AC 104 ms
52,748 KB
testcase_32 AC 118 ms
54,104 KB
testcase_33 AC 117 ms
54,044 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