結果

問題 No.5 数字のブロック
ユーザー DAZYDAZY
提出日時 2017-05-24 23:26:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 384 ms / 5,000 ms
コード長 672 bytes
コンパイル時間 3,549 ms
コンパイル使用メモリ 74,288 KB
実行使用メモリ 47,972 KB
最終ジャッジ日時 2024-11-18 11:08:30
合計ジャッジ時間 11,701 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,440 KB
testcase_01 AC 131 ms
41,248 KB
testcase_02 AC 130 ms
41,548 KB
testcase_03 AC 283 ms
46,936 KB
testcase_04 AC 225 ms
45,764 KB
testcase_05 AC 316 ms
47,168 KB
testcase_06 AC 251 ms
46,080 KB
testcase_07 AC 271 ms
45,540 KB
testcase_08 AC 247 ms
46,272 KB
testcase_09 AC 213 ms
43,688 KB
testcase_10 AC 293 ms
47,228 KB
testcase_11 AC 236 ms
45,696 KB
testcase_12 AC 295 ms
47,028 KB
testcase_13 AC 279 ms
46,768 KB
testcase_14 AC 152 ms
41,696 KB
testcase_15 AC 153 ms
41,596 KB
testcase_16 AC 311 ms
47,040 KB
testcase_17 AC 362 ms
47,972 KB
testcase_18 AC 312 ms
47,484 KB
testcase_19 AC 384 ms
47,624 KB
testcase_20 AC 133 ms
41,600 KB
testcase_21 AC 133 ms
41,248 KB
testcase_22 AC 132 ms
41,440 KB
testcase_23 AC 132 ms
41,500 KB
testcase_24 AC 156 ms
41,856 KB
testcase_25 AC 197 ms
42,220 KB
testcase_26 AC 129 ms
41,136 KB
testcase_27 AC 130 ms
41,176 KB
testcase_28 AC 131 ms
41,460 KB
testcase_29 AC 223 ms
45,796 KB
testcase_30 AC 212 ms
43,924 KB
testcase_31 AC 129 ms
41,376 KB
testcase_32 AC 130 ms
41,116 KB
testcase_33 AC 117 ms
41,568 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