結果

問題 No.269 見栄っ張りの募金活動
ユーザー GrenacheGrenache
提出日時 2015-08-22 00:06:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 934 bytes
コンパイル時間 4,546 ms
コンパイル使用メモリ 77,636 KB
実行使用メモリ 63,416 KB
最終ジャッジ日時 2024-07-16 01:31:25
合計ジャッジ時間 6,995 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,216 KB
testcase_01 AC 126 ms
53,888 KB
testcase_02 AC 120 ms
54,024 KB
testcase_03 AC 127 ms
54,104 KB
testcase_04 AC 135 ms
56,104 KB
testcase_05 AC 122 ms
54,180 KB
testcase_06 AC 111 ms
53,072 KB
testcase_07 AC 131 ms
63,416 KB
testcase_08 AC 116 ms
53,556 KB
testcase_09 AC 120 ms
54,324 KB
testcase_10 AC 109 ms
53,048 KB
testcase_11 AC 135 ms
54,032 KB
testcase_12 AC 123 ms
54,000 KB
testcase_13 AC 132 ms
54,152 KB
testcase_14 AC 120 ms
54,088 KB
testcase_15 AC 135 ms
54,220 KB
testcase_16 AC 120 ms
54,472 KB
testcase_17 AC 120 ms
54,172 KB
testcase_18 AC 127 ms
55,172 KB
testcase_19 AC 141 ms
54,216 KB
testcase_20 AC 110 ms
53,084 KB
testcase_21 AC 131 ms
54,076 KB
testcase_22 AC 130 ms
54,096 KB
testcase_23 AC 118 ms
53,852 KB
testcase_24 AC 121 ms
54,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder269 {

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

        final int MOD = 1_000_000_007;
        int n = sc.nextInt();
        int s = sc.nextInt();
        int k = sc.nextInt();

        if (s < k * n * (n - 1) / 2) {
        	System.out.println("0");
        } else {
        	int m = s - k * n * (n - 1) / 2;
        	int[][] dp = new int[n + 1][m + 1];
        	dp[0][0] = 1;
        	for (int i = 1; i <= n; i++) {
        		for (int j = 0; j <= m; j++) {
        			if (j - i >= 0) {
        				dp[i][j] = (dp[i][j - i] + dp[i - 1][j]) % MOD;
        			} else {
        				dp[i][j] = dp[i - 1][j];
        			}
        		}
        	}

        	int ret = 0;
//        	for (int i = 1; i <= n; i++) {
        		ret = (ret + dp[n][m]) % MOD;
//        	}
        	System.out.println(ret);
        }

        sc.close();
    }
}
0