結果

問題 No.5 数字のブロック
ユーザー mos_13184925mos_13184925
提出日時 2018-06-18 14:15:27
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 588 bytes
コンパイル時間 2,165 ms
コンパイル使用メモリ 78,596 KB
実行使用メモリ 58,892 KB
最終ジャッジ日時 2024-06-30 16:53:31
合計ジャッジ時間 9,726 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
52,796 KB
testcase_01 AC 133 ms
53,872 KB
testcase_02 AC 131 ms
54,224 KB
testcase_03 AC 237 ms
57,728 KB
testcase_04 AC 221 ms
57,552 KB
testcase_05 AC 254 ms
58,880 KB
testcase_06 AC 234 ms
58,000 KB
testcase_07 AC 227 ms
57,940 KB
testcase_08 AC 244 ms
58,264 KB
testcase_09 AC 200 ms
56,652 KB
testcase_10 AC 253 ms
58,892 KB
testcase_11 AC 227 ms
57,924 KB
testcase_12 AC 251 ms
58,372 KB
testcase_13 AC 250 ms
58,280 KB
testcase_14 AC 145 ms
54,232 KB
testcase_15 AC 153 ms
54,252 KB
testcase_16 AC 256 ms
58,744 KB
testcase_17 AC 263 ms
58,200 KB
testcase_18 AC 269 ms
58,508 KB
testcase_19 AC 274 ms
58,892 KB
testcase_20 RE -
testcase_21 AC 132 ms
54,132 KB
testcase_22 AC 132 ms
54,200 KB
testcase_23 AC 132 ms
54,164 KB
testcase_24 AC 156 ms
54,500 KB
testcase_25 AC 181 ms
54,192 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 220 ms
57,436 KB
testcase_30 AC 207 ms
56,812 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[]args) {
        Scanner sc = new Scanner(System.in);
        int L = sc.nextInt();
        int N = sc.nextInt();
        int[] W = new int[N];
        for(int i = 0; i < N; i++) {
            W[i] = sc.nextInt();
        }
        Arrays.sort(W);
        int ans = 0;
        int n = 0;
        for(int i = 0; n < L; i++) {
            n += W[i];
            if(n > L) {
                break;
            };
            ans ++;
        }
        System.out.println(ans);
    }
}
0