結果

問題 No.1701 half price
ユーザー みーすけみーすけ
提出日時 2021-10-08 23:32:30
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 921 bytes
コンパイル時間 2,883 ms
コンパイル使用メモリ 77,328 KB
実行使用メモリ 54,116 KB
最終ジャッジ日時 2024-07-23 07:44:03
合計ジャッジ時間 7,907 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,116 KB
testcase_01 AC 133 ms
54,052 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int w = sc.nextInt();
        int[] a = new int[n];
        for (int i = 0; i < n; i++) {
            a[i] = sc.nextInt();
        }

        int[][][] dp = new int[n + 1][w + 1][2];

        dp[0][0][0] = 1;

        for (int i = 0; i < n; i++) {
            for (int j = 0; j <= w; j++) {
                dp[i + 1][j][0] += dp[i][j][0];
                dp[i + 1][j][1] += dp[i][j][1];
                if (j >= a[i]){
                    dp[i + 1][j][0] += dp[i][j - a[i]][0];
                    dp[i + 1][j][1] += dp[i][j - a[i]][1];
                }
                if (j >= a[i] / 2){
                    dp[i + 1][j][1] += dp[i][j - a[i] / 2][0];
                }
            }
        }

        System.out.println(dp[n][w][0]+dp[n][w][1]);
    }

}
0