結果

問題 No.269 見栄っ張りの募金活動
ユーザー tentententen
提出日時 2020-12-23 12:35:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,389 ms / 5,000 ms
コード長 814 bytes
コンパイル時間 2,207 ms
コンパイル使用メモリ 74,916 KB
実行使用メモリ 63,028 KB
最終ジャッジ日時 2024-09-21 16:22:29
合計ジャッジ時間 13,946 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,112 KB
testcase_01 AC 139 ms
54,096 KB
testcase_02 AC 138 ms
54,076 KB
testcase_03 AC 157 ms
54,224 KB
testcase_04 AC 1,754 ms
58,672 KB
testcase_05 AC 147 ms
54,084 KB
testcase_06 AC 134 ms
54,108 KB
testcase_07 AC 2,389 ms
63,028 KB
testcase_08 AC 137 ms
54,180 KB
testcase_09 AC 180 ms
58,944 KB
testcase_10 AC 138 ms
54,160 KB
testcase_11 AC 885 ms
54,380 KB
testcase_12 AC 153 ms
56,168 KB
testcase_13 AC 462 ms
53,988 KB
testcase_14 AC 353 ms
54,000 KB
testcase_15 AC 605 ms
54,280 KB
testcase_16 AC 175 ms
56,084 KB
testcase_17 AC 142 ms
53,796 KB
testcase_18 AC 710 ms
58,836 KB
testcase_19 AC 322 ms
55,980 KB
testcase_20 AC 252 ms
54,288 KB
testcase_21 AC 483 ms
54,084 KB
testcase_22 AC 266 ms
54,416 KB
testcase_23 AC 154 ms
53,908 KB
testcase_24 AC 420 ms
54,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int s = sc.nextInt();
        int k = sc.nextInt();
        int[][] dp = new int[n][s + 1];
        for (int i = 0; i * n <= s; i++) {
            dp[0][i * n]++;
        }
        for (int i = 1; i < n; i++) {
            for (int j = 0; j <= s; j++) {
                if (dp[i - 1][j] == 0) {
                    continue;
                }
                for (int a = k; j + a * (n - i) <= s; a++) {
                    dp[i][j + a * (n - i)] += dp[i - 1][j];
                    dp[i][j + a * (n - i)] %= MOD;
                }
            }
        }
        System.out.println(dp[n - 1][s]);
    }
}
0