結果

問題 No.269 見栄っ張りの募金活動
ユーザー lemondolemondo
提出日時 2020-11-01 17:55:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 5,000 ms
コード長 534 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 77,516 KB
最終ジャッジ日時 2024-07-22 05:47:10
合計ジャッジ時間 2,288 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 41 ms
52,404 KB
testcase_02 AC 43 ms
52,088 KB
testcase_03 AC 52 ms
61,396 KB
testcase_04 AC 60 ms
66,840 KB
testcase_05 AC 42 ms
58,468 KB
testcase_06 AC 39 ms
52,356 KB
testcase_07 AC 82 ms
77,516 KB
testcase_08 AC 39 ms
52,752 KB
testcase_09 AC 39 ms
52,408 KB
testcase_10 AC 38 ms
53,468 KB
testcase_11 AC 47 ms
62,232 KB
testcase_12 AC 38 ms
52,616 KB
testcase_13 AC 49 ms
63,476 KB
testcase_14 AC 45 ms
61,208 KB
testcase_15 AC 47 ms
61,228 KB
testcase_16 AC 38 ms
52,192 KB
testcase_17 AC 38 ms
52,684 KB
testcase_18 AC 57 ms
67,208 KB
testcase_19 AC 49 ms
62,172 KB
testcase_20 AC 45 ms
60,384 KB
testcase_21 AC 45 ms
60,476 KB
testcase_22 AC 48 ms
62,776 KB
testcase_23 AC 44 ms
60,308 KB
testcase_24 AC 46 ms
61,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input(): return sys.stdin.readline().strip()
def mapint(): return map(int, input().split())
sys.setrecursionlimit(10**9)

N, S, K = mapint()
mod = 10**9 + 7
if ((N - 1)*N//2)*K > S:
    print(0)
    exit()
else:
    S -= ((N - 1)*N//2)*K

# 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>=0:
            dp[i][j] = dp[i][j-i] + dp[i-1][j]
        else:
            dp[i][j] = dp[i-1][j]
        dp[i][j] %= mod
print(dp[-1][-1])
0