結果

問題 No.5 数字のブロック
ユーザー DAZYDAZY
提出日時 2017-05-24 23:26:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 387 ms / 5,000 ms
コード長 672 bytes
コンパイル時間 4,434 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 47,640 KB
最終ジャッジ日時 2024-04-29 09:02:36
合計ジャッジ時間 12,591 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,244 KB
testcase_01 AC 134 ms
41,024 KB
testcase_02 AC 132 ms
41,480 KB
testcase_03 AC 302 ms
46,592 KB
testcase_04 AC 234 ms
45,736 KB
testcase_05 AC 314 ms
46,952 KB
testcase_06 AC 255 ms
45,676 KB
testcase_07 AC 274 ms
45,996 KB
testcase_08 AC 264 ms
45,936 KB
testcase_09 AC 214 ms
43,232 KB
testcase_10 AC 291 ms
47,080 KB
testcase_11 AC 236 ms
45,624 KB
testcase_12 AC 301 ms
46,640 KB
testcase_13 AC 291 ms
47,012 KB
testcase_14 AC 157 ms
41,348 KB
testcase_15 AC 171 ms
41,796 KB
testcase_16 AC 326 ms
46,932 KB
testcase_17 AC 365 ms
47,556 KB
testcase_18 AC 322 ms
47,580 KB
testcase_19 AC 387 ms
47,640 KB
testcase_20 AC 134 ms
41,184 KB
testcase_21 AC 134 ms
41,244 KB
testcase_22 AC 135 ms
41,072 KB
testcase_23 AC 135 ms
41,116 KB
testcase_24 AC 167 ms
41,680 KB
testcase_25 AC 196 ms
42,060 KB
testcase_26 AC 139 ms
41,160 KB
testcase_27 AC 118 ms
39,956 KB
testcase_28 AC 133 ms
41,104 KB
testcase_29 AC 235 ms
45,620 KB
testcase_30 AC 217 ms
43,708 KB
testcase_31 AC 134 ms
41,320 KB
testcase_32 AC 135 ms
41,240 KB
testcase_33 AC 132 ms
41,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No5 {
    public static void main (String[] args) {
        Scanner scan = new Scanner(System.in);
        int L = scan.nextInt();
        int N = scan.nextInt();
        int[] m = new int[L+1];
        m[0] = 1; for (int i = 1; i < L+1; m[i] = 0, i++);
        int w, ans = 0;
        for (int i = 0; i < N; i++) {
            w = scan.nextInt();
            for (int j = L-w; j >= 0; j--) {
                if (j+w < L+1 && m[j+w] < m[j]+1) m[j+w] = m[j]+1;
            }
        }
        for (int i = L; i >= 0; i--) {
            if (ans < m[i]) ans = m[i];
        }
        System.out.println(ans-1);
        return;
    }
}
0