結果

問題 No.5 数字のブロック
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-23 11:09:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 107 ms / 5,000 ms
コード長 911 bytes
コンパイル時間 2,103 ms
コンパイル使用メモリ 75,248 KB
実行使用メモリ 52,684 KB
最終ジャッジ日時 2024-11-18 11:00:07
合計ジャッジ時間 5,646 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,416 KB
testcase_01 AC 54 ms
50,436 KB
testcase_02 AC 54 ms
50,400 KB
testcase_03 AC 99 ms
52,192 KB
testcase_04 AC 85 ms
51,536 KB
testcase_05 AC 105 ms
52,504 KB
testcase_06 AC 80 ms
51,412 KB
testcase_07 AC 77 ms
51,508 KB
testcase_08 AC 87 ms
51,632 KB
testcase_09 AC 64 ms
50,868 KB
testcase_10 AC 105 ms
52,512 KB
testcase_11 AC 87 ms
51,556 KB
testcase_12 AC 94 ms
52,552 KB
testcase_13 AC 105 ms
52,684 KB
testcase_14 AC 55 ms
50,108 KB
testcase_15 AC 54 ms
50,416 KB
testcase_16 AC 101 ms
52,364 KB
testcase_17 AC 96 ms
52,664 KB
testcase_18 AC 106 ms
52,616 KB
testcase_19 AC 107 ms
52,472 KB
testcase_20 AC 54 ms
50,472 KB
testcase_21 AC 54 ms
50,384 KB
testcase_22 AC 54 ms
50,084 KB
testcase_23 AC 54 ms
50,484 KB
testcase_24 AC 56 ms
50,492 KB
testcase_25 AC 57 ms
50,472 KB
testcase_26 AC 53 ms
50,040 KB
testcase_27 AC 54 ms
50,036 KB
testcase_28 AC 56 ms
50,436 KB
testcase_29 AC 84 ms
51,784 KB
testcase_30 AC 67 ms
51,068 KB
testcase_31 AC 54 ms
50,360 KB
testcase_32 AC 54 ms
50,388 KB
testcase_33 AC 54 ms
50,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        int L = Integer.parseInt(reader.readLine());
        int N = Integer.parseInt(reader.readLine());
        String[] line = reader.readLine().split(" ");
        int[] blocks = new int[N + 1];
        for (int i = 0; i < N; i++) {
            blocks[i + 1] = Integer.parseInt(line[i]);
        }
        Arrays.sort(blocks);

        int counter = 0;
        for (int i = 1; i <= N; i++) {
            blocks[i] = blocks[i - 1] + blocks[i];
            if (blocks[i] > L) {
                break;
            } else {
                counter += 1;
            }
        }
        System.out.println(counter);
    }
}
0