結果

問題 No.5 数字のブロック
ユーザー mobius_bkstmobius_bkst
提出日時 2015-04-22 23:20:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 5,000 ms
コード長 980 bytes
コンパイル時間 4,366 ms
コンパイル使用メモリ 76,948 KB
実行使用メモリ 52,532 KB
最終ジャッジ日時 2024-11-17 22:39:00
合計ジャッジ時間 7,486 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
49,976 KB
testcase_01 AC 57 ms
50,208 KB
testcase_02 AC 56 ms
50,396 KB
testcase_03 AC 103 ms
52,244 KB
testcase_04 AC 86 ms
51,384 KB
testcase_05 AC 106 ms
52,448 KB
testcase_06 AC 85 ms
51,420 KB
testcase_07 AC 85 ms
51,320 KB
testcase_08 AC 94 ms
51,324 KB
testcase_09 AC 70 ms
50,748 KB
testcase_10 AC 98 ms
52,292 KB
testcase_11 AC 84 ms
51,216 KB
testcase_12 AC 94 ms
52,508 KB
testcase_13 AC 105 ms
52,532 KB
testcase_14 AC 59 ms
50,492 KB
testcase_15 AC 58 ms
50,092 KB
testcase_16 AC 107 ms
52,476 KB
testcase_17 AC 111 ms
52,484 KB
testcase_18 AC 109 ms
52,072 KB
testcase_19 AC 108 ms
52,484 KB
testcase_20 AC 57 ms
50,320 KB
testcase_21 AC 56 ms
49,852 KB
testcase_22 AC 55 ms
50,272 KB
testcase_23 AC 58 ms
50,684 KB
testcase_24 AC 59 ms
49,940 KB
testcase_25 AC 59 ms
49,880 KB
testcase_26 AC 56 ms
50,328 KB
testcase_27 AC 59 ms
50,356 KB
testcase_28 AC 58 ms
50,352 KB
testcase_29 AC 80 ms
51,440 KB
testcase_30 AC 69 ms
51,060 KB
testcase_31 AC 57 ms
50,248 KB
testcase_32 AC 57 ms
50,524 KB
testcase_33 AC 56 ms
50,236 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