結果

問題 No.1701 half price
ユーザー みーすけみーすけ
提出日時 2021-10-08 23:46:33
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 929 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 77,224 KB
実行使用メモリ 691,760 KB
最終ジャッジ日時 2024-07-23 08:14:22
合計ジャッジ時間 6,637 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,844 KB
testcase_01 AC 129 ms
54,060 KB
testcase_02 MLE -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 130 ms
54,068 KB
testcase_06 RE -
testcase_07 WA -
testcase_08 WA -
testcase_09 RE -
testcase_10 AC 127 ms
53,968 KB
testcase_11 WA -
testcase_12 AC 130 ms
54,032 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 114 ms
53,020 KB
testcase_16 AC 128 ms
54,288 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 127 ms
54,312 KB
testcase_21 AC 134 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

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];
        int[][] dp2 = new int[n + 1][w + 1];


        dp[0][0] = 1;

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

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

}
0