結果

問題 No.5 数字のブロック
ユーザー drymousedrymouse
提出日時 2024-11-18 01:32:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 230 ms / 5,000 ms
コード長 637 bytes
コンパイル時間 2,573 ms
コンパイル使用メモリ 77,824 KB
実行使用メモリ 43,972 KB
最終ジャッジ日時 2024-11-18 01:32:29
合計ジャッジ時間 9,924 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,340 KB
testcase_01 AC 125 ms
41,132 KB
testcase_02 AC 111 ms
40,060 KB
testcase_03 AC 184 ms
42,980 KB
testcase_04 AC 170 ms
41,644 KB
testcase_05 AC 199 ms
43,672 KB
testcase_06 AC 203 ms
42,020 KB
testcase_07 AC 180 ms
42,336 KB
testcase_08 AC 190 ms
42,244 KB
testcase_09 AC 169 ms
41,672 KB
testcase_10 AC 208 ms
42,992 KB
testcase_11 AC 180 ms
42,952 KB
testcase_12 AC 192 ms
42,812 KB
testcase_13 AC 219 ms
43,628 KB
testcase_14 AC 115 ms
40,216 KB
testcase_15 AC 127 ms
41,160 KB
testcase_16 AC 202 ms
43,972 KB
testcase_17 AC 208 ms
43,556 KB
testcase_18 AC 204 ms
43,100 KB
testcase_19 AC 230 ms
43,964 KB
testcase_20 AC 126 ms
41,320 KB
testcase_21 AC 125 ms
40,996 KB
testcase_22 AC 111 ms
39,984 KB
testcase_23 AC 124 ms
41,648 KB
testcase_24 AC 134 ms
41,084 KB
testcase_25 AC 141 ms
41,256 KB
testcase_26 AC 135 ms
41,332 KB
testcase_27 AC 133 ms
41,072 KB
testcase_28 AC 126 ms
41,672 KB
testcase_29 AC 167 ms
41,948 KB
testcase_30 AC 186 ms
41,336 KB
testcase_31 AC 140 ms
41,052 KB
testcase_32 AC 160 ms
41,028 KB
testcase_33 AC 142 ms
40,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
    public static void main(String... args) {
        int L, N;
        var sin = new Scanner(System.in);
        L = Integer.parseInt(sin.nextLine());
        N = Integer.parseInt(sin.nextLine());
        String[] W = sin.nextLine().split(" ");
        int[] some = new int[W.length];
        Arrays.setAll(some, i -> Integer.parseInt(W[i]));
        Arrays.sort(some);

        int sum = 0, i;
        
        for (i = 0; i < N; i++) {
            sum += some[i];
            if (sum > L) break;
        }
        
        System.out.println(i);
        
    }
}
0