結果

問題 No.5 数字のブロック
ユーザー mobius_bkstmobius_bkst
提出日時 2015-04-22 23:15:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 981 bytes
コンパイル時間 3,481 ms
コンパイル使用メモリ 76,396 KB
実行使用メモリ 40,192 KB
最終ジャッジ日時 2024-07-05 00:20:33
合計ジャッジ時間 7,423 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,852 KB
testcase_01 AC 53 ms
37,132 KB
testcase_02 WA -
testcase_03 AC 95 ms
38,516 KB
testcase_04 AC 86 ms
38,480 KB
testcase_05 WA -
testcase_06 AC 89 ms
38,624 KB
testcase_07 AC 77 ms
38,616 KB
testcase_08 AC 89 ms
38,624 KB
testcase_09 AC 63 ms
37,072 KB
testcase_10 AC 90 ms
39,696 KB
testcase_11 AC 76 ms
38,484 KB
testcase_12 AC 95 ms
39,424 KB
testcase_13 AC 95 ms
39,632 KB
testcase_14 AC 52 ms
36,600 KB
testcase_15 WA -
testcase_16 AC 104 ms
39,388 KB
testcase_17 AC 108 ms
39,928 KB
testcase_18 AC 92 ms
39,920 KB
testcase_19 AC 109 ms
40,192 KB
testcase_20 AC 51 ms
37,024 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 51 ms
36,760 KB
testcase_24 AC 49 ms
37,156 KB
testcase_25 AC 51 ms
36,952 KB
testcase_26 AC 52 ms
37,052 KB
testcase_27 AC 51 ms
36,848 KB
testcase_28 AC 51 ms
37,000 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 51 ms
36,480 KB
testcase_32 AC 50 ms
36,480 KB
testcase_33 AC 51 ms
36,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No005 {
    public static void main(String[] args) {
        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            int L = Integer.parseInt(br.readLine());
            int N = Integer.parseInt(br.readLine());
            String[] WStrArray = br.readLine().split(" ");

            int[] W = new int[N];
            for (int i = 0; i < N; i++) {
                W[i] = Integer.parseInt(WStrArray[i]);
            }
            Arrays.sort(W);

            int count = 0;
            for (int i = 0; i < N; i++) {
                L = L - W[i];
                if (L <= 0) {
                    break;
                }
                count++;
            }

            System.out.println(count);
        } catch (Exception e) {
            System.err.println("Error:" + e.getMessage());
        }
    }

}
0