結果

問題 No.269 見栄っ張りの募金活動
ユーザー tai_yakitai_yaki
提出日時 2020-07-04 17:03:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,644 ms / 5,000 ms
コード長 357 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 88,960 KB
最終ジャッジ日時 2024-09-19 04:55:48
合計ジャッジ時間 5,920 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 78 ms
12,928 KB
testcase_04 AC 577 ms
38,144 KB
testcase_05 AC 34 ms
10,624 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 1,644 ms
88,960 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 162 ms
16,256 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 210 ms
19,584 KB
testcase_14 AC 61 ms
11,776 KB
testcase_15 AC 187 ms
18,688 KB
testcase_16 AC 30 ms
10,880 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 533 ms
37,504 KB
testcase_19 AC 183 ms
18,304 KB
testcase_20 AC 60 ms
11,904 KB
testcase_21 AC 66 ms
12,160 KB
testcase_22 AC 126 ms
15,488 KB
testcase_23 AC 41 ms
11,136 KB
testcase_24 AC 79 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, s, k = map(int, input().split())
mod = 10 ** 9 + 7


s -= k * n * (n - 1) // 2
if s < 0:
    print(0)
    exit()

dp = [[0 for _ in range(s+1)] for _ in range(n+1)]
dp[0][0] = 1

for i in range(1, n+1):
    for j in range(s+1):
        dp[i][j] += dp[i-1][j]
        if j >= i:
            dp[i][j] += dp[i][j-i]

        dp[i][j] %= mod

print(dp[n][s])
0