結果

問題 No.5 数字のブロック
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-23 11:07:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 910 bytes
コンパイル時間 2,558 ms
コンパイル使用メモリ 75,628 KB
実行使用メモリ 44,828 KB
最終ジャッジ日時 2024-07-21 20:01:48
合計ジャッジ時間 6,192 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,312 KB
testcase_01 AC 53 ms
37,204 KB
testcase_02 WA -
testcase_03 AC 87 ms
39,088 KB
testcase_04 AC 86 ms
38,504 KB
testcase_05 AC 105 ms
39,192 KB
testcase_06 AC 97 ms
39,128 KB
testcase_07 AC 75 ms
38,312 KB
testcase_08 AC 96 ms
39,072 KB
testcase_09 AC 62 ms
37,036 KB
testcase_10 AC 103 ms
40,132 KB
testcase_11 AC 83 ms
38,492 KB
testcase_12 AC 90 ms
38,856 KB
testcase_13 AC 91 ms
39,300 KB
testcase_14 AC 54 ms
36,920 KB
testcase_15 AC 56 ms
37,240 KB
testcase_16 AC 99 ms
39,756 KB
testcase_17 AC 111 ms
40,436 KB
testcase_18 AC 109 ms
40,548 KB
testcase_19 AC 107 ms
39,512 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 55 ms
37,108 KB
testcase_24 AC 55 ms
37,192 KB
testcase_25 AC 56 ms
37,172 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 90 ms
38,432 KB
testcase_30 AC 65 ms
44,828 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

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