結果

問題 No.269 見栄っ張りの募金活動
ユーザー tktk_snsntktk_snsn
提出日時 2020-06-02 16:44:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,046 ms / 5,000 ms
コード長 417 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 88,704 KB
最終ジャッジ日時 2024-05-03 05:32:23
合計ジャッジ時間 4,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 61 ms
12,928 KB
testcase_04 AC 380 ms
37,888 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 1,046 ms
88,704 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 104 ms
16,384 KB
testcase_12 AC 28 ms
10,624 KB
testcase_13 AC 141 ms
19,456 KB
testcase_14 AC 44 ms
11,648 KB
testcase_15 AC 141 ms
18,560 KB
testcase_16 AC 27 ms
10,880 KB
testcase_17 AC 27 ms
10,624 KB
testcase_18 AC 383 ms
37,248 KB
testcase_19 AC 121 ms
18,304 KB
testcase_20 AC 45 ms
12,032 KB
testcase_21 AC 52 ms
12,288 KB
testcase_22 AC 94 ms
15,488 KB
testcase_23 AC 33 ms
11,136 KB
testcase_24 AC 62 ms
12,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, S, K = map(int, input().split())
mod = 10 ** 9 + 7

base = sum(i * K for i in range(N))
if base > S:
    print(0)
    exit()
S -= base


# dp[i][j]  jをi分割
dp = [[0] * (S + 1) for _ in range(N + 1)]
dp[0][0] = 1
for i in range(1, N + 1):
    for j in range(S + 1):
        if j >= i:
            dp[i][j] = (dp[i - 1][j] + dp[i][j - i]) % mod
        else:
            dp[i][j] = dp[i - 1][j]

print(dp[N][S])
0