結果

問題 No.269 見栄っ張りの募金活動
ユーザー htensaihtensai
提出日時 2020-05-12 13:19:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,310 ms / 5,000 ms
コード長 832 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 76,896 KB
実行使用メモリ 62,008 KB
最終ジャッジ日時 2024-09-13 10:19:34
合計ジャッジ時間 14,163 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,064 KB
testcase_01 AC 129 ms
53,908 KB
testcase_02 AC 133 ms
54,204 KB
testcase_03 AC 166 ms
54,208 KB
testcase_04 AC 1,664 ms
56,164 KB
testcase_05 AC 161 ms
53,872 KB
testcase_06 AC 132 ms
53,956 KB
testcase_07 AC 2,310 ms
62,008 KB
testcase_08 AC 130 ms
54,148 KB
testcase_09 AC 130 ms
53,888 KB
testcase_10 AC 131 ms
54,208 KB
testcase_11 AC 821 ms
53,976 KB
testcase_12 AC 129 ms
54,244 KB
testcase_13 AC 447 ms
54,204 KB
testcase_14 AC 405 ms
54,076 KB
testcase_15 AC 616 ms
54,188 KB
testcase_16 AC 133 ms
53,764 KB
testcase_17 AC 131 ms
54,064 KB
testcase_18 AC 632 ms
56,348 KB
testcase_19 AC 314 ms
54,140 KB
testcase_20 AC 285 ms
53,968 KB
testcase_21 AC 571 ms
53,988 KB
testcase_22 AC 257 ms
53,572 KB
testcase_23 AC 166 ms
54,388 KB
testcase_24 AC 464 ms
54,268 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 kk = sc.nextInt();
		int min = n * (n - 1) * kk / 2;
		if (s < min) {
		    System.out.println(0);
		    return;
		}
		s -= min;
		int[][] dp = new int[n + 1][s + 1];
		dp[0][0] = 1;
		for (int i = 0; i * n <= s; i++) {
		    dp[1][i * n] = 1;
		}
		for (int i = 2; i <= n; i++) {
		    for (int j = 0; j <= s; j++) {
		        if (dp[i - 1][j] == 0) {
		            continue;
		        }
		        for (int k = 0; j + k * (n - i + 1) <= s; k++) {
		            dp[i][j + k * (n - i + 1)] += dp[i - 1][j];
		            dp[i][j + k * (n - i + 1)] %= MOD;
		        }
		    }
		}
		System.out.println(dp[n][s]);
	}
}
0