結果

問題 No.5 数字のブロック
ユーザー mastersatoshimastersatoshi
提出日時 2015-08-01 11:53:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 807 bytes
コンパイル時間 1,984 ms
コンパイル使用メモリ 75,492 KB
実行使用メモリ 40,472 KB
最終ジャッジ日時 2024-11-17 23:05:05
合計ジャッジ時間 5,404 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
37,100 KB
testcase_01 AC 47 ms
36,972 KB
testcase_02 AC 47 ms
36,856 KB
testcase_03 AC 78 ms
39,452 KB
testcase_04 AC 89 ms
38,432 KB
testcase_05 AC 99 ms
39,296 KB
testcase_06 AC 83 ms
39,424 KB
testcase_07 AC 85 ms
38,560 KB
testcase_08 AC 86 ms
39,116 KB
testcase_09 AC 68 ms
38,040 KB
testcase_10 AC 110 ms
40,032 KB
testcase_11 AC 74 ms
38,784 KB
testcase_12 AC 89 ms
39,280 KB
testcase_13 AC 99 ms
39,696 KB
testcase_14 AC 48 ms
36,804 KB
testcase_15 AC 48 ms
36,968 KB
testcase_16 AC 95 ms
39,252 KB
testcase_17 AC 111 ms
40,380 KB
testcase_18 AC 113 ms
40,472 KB
testcase_19 AC 114 ms
40,412 KB
testcase_20 AC 49 ms
36,772 KB
testcase_21 AC 48 ms
36,836 KB
testcase_22 AC 49 ms
36,900 KB
testcase_23 AC 47 ms
36,484 KB
testcase_24 AC 48 ms
37,176 KB
testcase_25 AC 52 ms
36,840 KB
testcase_26 AC 47 ms
36,892 KB
testcase_27 AC 48 ms
37,044 KB
testcase_28 AC 48 ms
37,116 KB
testcase_29 AC 82 ms
38,444 KB
testcase_30 AC 65 ms
38,168 KB
testcase_31 AC 48 ms
36,996 KB
testcase_32 AC 48 ms
36,600 KB
testcase_33 AC 48 ms
36,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {

    public static void main(String[] args) throws Exception {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int L = Integer.parseInt(br.readLine());
        int N = Integer.parseInt(br.readLine());

        String[] strW = br.readLine().split(" ");

        ArrayList<Integer> W = new ArrayList();

        int sum = 0;
        for (int i = 0; i < strW.length; i++) {
            W.add(Integer.parseInt(strW[i]));
        }

        W.sort(null);

        int i = 0;
        for (; i < W.size(); i++) {
            int tmpW = W.get(i);
            if (L >= tmpW) {
                L -= tmpW;
            } else {
                break;
            }
        }

        System.out.println(i);
    }
}
0