結果

問題 No.5 数字のブロック
ユーザー mos_13184925mos_13184925
提出日時 2018-06-18 14:24:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 239 ms / 5,000 ms
コード長 602 bytes
コンパイル時間 2,188 ms
コンパイル使用メモリ 74,324 KB
実行使用メモリ 47,808 KB
最終ジャッジ日時 2024-11-18 12:30:16
合計ジャッジ時間 8,583 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,312 KB
testcase_01 AC 116 ms
41,392 KB
testcase_02 AC 104 ms
41,128 KB
testcase_03 AC 218 ms
46,724 KB
testcase_04 AC 200 ms
45,408 KB
testcase_05 AC 239 ms
47,204 KB
testcase_06 AC 205 ms
46,308 KB
testcase_07 AC 199 ms
45,772 KB
testcase_08 AC 222 ms
46,648 KB
testcase_09 AC 178 ms
43,432 KB
testcase_10 AC 231 ms
47,524 KB
testcase_11 AC 197 ms
45,928 KB
testcase_12 AC 218 ms
46,420 KB
testcase_13 AC 220 ms
47,304 KB
testcase_14 AC 130 ms
41,472 KB
testcase_15 AC 147 ms
41,816 KB
testcase_16 AC 237 ms
46,824 KB
testcase_17 AC 237 ms
47,560 KB
testcase_18 AC 238 ms
47,584 KB
testcase_19 AC 236 ms
47,808 KB
testcase_20 AC 111 ms
41,364 KB
testcase_21 AC 118 ms
41,504 KB
testcase_22 AC 112 ms
41,212 KB
testcase_23 AC 105 ms
41,560 KB
testcase_24 AC 150 ms
41,992 KB
testcase_25 AC 163 ms
42,212 KB
testcase_26 AC 104 ms
41,380 KB
testcase_27 AC 117 ms
41,404 KB
testcase_28 AC 112 ms
41,036 KB
testcase_29 AC 194 ms
45,792 KB
testcase_30 AC 180 ms
44,036 KB
testcase_31 AC 119 ms
41,244 KB
testcase_32 AC 119 ms
41,504 KB
testcase_33 AC 117 ms
41,212 KB
権限があれば一括ダウンロードができます

ソースコード

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 < W.length; i++) {
            W[i] = sc.nextInt();
        }
        Arrays.sort(W);
        int ans = 0;
        int n = 0;
        for(int i = 0; i < W.length; i++) {
            n += W[i];
            if(n > L) {
                break;
            };
            ans ++;
        }
        System.out.println(ans);
    }
}
0