結果

問題 No.1701 half price
ユーザー みーすけみーすけ
提出日時 2021-10-08 23:18:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 735 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 512,304 KB
最終ジャッジ日時 2024-07-23 07:10:57
合計ジャッジ時間 7,065 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
48,100 KB
testcase_01 WA -
testcase_02 MLE -
testcase_03 WA -
testcase_04 AC 138 ms
54,008 KB
testcase_05 AC 160 ms
54,156 KB
testcase_06 RE -
testcase_07 WA -
testcase_08 WA -
testcase_09 RE -
testcase_10 AC 136 ms
54,232 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 136 ms
54,256 KB
testcase_16 AC 135 ms
54,312 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 136 ms
54,108 KB
testcase_21 AC 141 ms
54,168 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];

        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];
                if (j >= a[i])
                    dp[i + 1][j] += dp[i][j - a[i]];
                if (j >= a[i] / 2)
                    dp[i + 1][j] += dp[i][j - a[i] / 2];
            }
        }

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

}
0