結果

問題 No.269 見栄っ張りの募金活動
ユーザー tassei903tassei903
提出日時 2022-12-14 09:36:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 699 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-11-08 01:40:18
合計ジャッジ時間 2,597 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 50 ms
60,160 KB
testcase_03 AC 55 ms
61,952 KB
testcase_04 AC 67 ms
67,840 KB
testcase_05 AC 48 ms
58,496 KB
testcase_06 AC 43 ms
52,480 KB
testcase_07 AC 81 ms
77,184 KB
testcase_08 AC 42 ms
52,352 KB
testcase_09 AC 68 ms
68,992 KB
testcase_10 AC 49 ms
59,136 KB
testcase_11 AC 56 ms
62,336 KB
testcase_12 AC 66 ms
67,584 KB
testcase_13 AC 58 ms
62,976 KB
testcase_14 AC 53 ms
60,288 KB
testcase_15 AC 58 ms
62,592 KB
testcase_16 AC 65 ms
66,560 KB
testcase_17 AC 58 ms
62,848 KB
testcase_18 AC 75 ms
71,424 KB
testcase_19 AC 61 ms
64,000 KB
testcase_20 AC 53 ms
61,056 KB
testcase_21 AC 52 ms
60,416 KB
testcase_22 AC 55 ms
61,696 KB
testcase_23 AC 53 ms
60,800 KB
testcase_24 AC 52 ms
60,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n,s,k = na()
dp = [0] * (s+1)
dp[0] = 1
mod = 10**9+7
for i in range(n):
    ndp = [0]*(s+1)
    ndp, dp = dp, ndp
    nk = k if i else 0
    for j in range(s+1):
        if j - (n - i) >= 0:
            dp[j] += dp[j-(n-i)]
        if j - nk*(n-i) >= 0:
            dp[j] += ndp[j-nk*(n-i)]
            dp[j] %= mod
    #print(dp)
print(dp[-1])
0