結果

問題 No.269 見栄っ張りの募金活動
ユーザー taxfree_pythontaxfree_python
提出日時 2023-02-02 13:29:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 5,000 ms
コード長 247 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 87,080 KB
実行使用メモリ 76,180 KB
最終ジャッジ日時 2023-09-14 20:01:23
合計ジャッジ時間 3,499 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,148 KB
testcase_01 AC 71 ms
71,184 KB
testcase_02 AC 72 ms
71,540 KB
testcase_03 AC 77 ms
76,152 KB
testcase_04 AC 81 ms
76,136 KB
testcase_05 AC 75 ms
75,772 KB
testcase_06 AC 72 ms
71,460 KB
testcase_07 AC 88 ms
76,156 KB
testcase_08 AC 73 ms
71,456 KB
testcase_09 AC 72 ms
71,372 KB
testcase_10 AC 77 ms
71,264 KB
testcase_11 AC 79 ms
76,180 KB
testcase_12 AC 70 ms
71,100 KB
testcase_13 AC 77 ms
75,920 KB
testcase_14 AC 73 ms
75,772 KB
testcase_15 AC 78 ms
75,920 KB
testcase_16 AC 71 ms
71,540 KB
testcase_17 AC 72 ms
71,204 KB
testcase_18 AC 80 ms
76,176 KB
testcase_19 AC 76 ms
75,968 KB
testcase_20 AC 76 ms
76,016 KB
testcase_21 AC 78 ms
75,896 KB
testcase_22 AC 77 ms
76,024 KB
testcase_23 AC 75 ms
75,700 KB
testcase_24 AC 76 ms
75,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

s -= n * ((n-1) * k) // 2

dp = (s + 1) * [1]
for i in range(2, n + 1):
    for j in range(i, s + 1):
        dp[j] = (dp[j] + dp[j - i]) % mod

if s < 0:
     print(0)
else:
    print(dp[-1])
0