結果

問題 No.269 見栄っ張りの募金活動
ユーザー titiatitia
提出日時 2022-09-02 00:08:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 5,000 ms
コード長 483 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 78,704 KB
最終ジャッジ日時 2024-11-14 16:28:20
合計ジャッジ時間 3,030 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,348 KB
testcase_01 AC 38 ms
52,284 KB
testcase_02 AC 47 ms
61,036 KB
testcase_03 AC 56 ms
64,600 KB
testcase_04 AC 71 ms
70,664 KB
testcase_05 AC 43 ms
59,404 KB
testcase_06 AC 39 ms
53,148 KB
testcase_07 AC 100 ms
78,704 KB
testcase_08 AC 38 ms
52,676 KB
testcase_09 AC 64 ms
70,264 KB
testcase_10 AC 47 ms
61,260 KB
testcase_11 AC 54 ms
64,456 KB
testcase_12 AC 60 ms
68,804 KB
testcase_13 AC 55 ms
64,448 KB
testcase_14 AC 48 ms
62,048 KB
testcase_15 AC 55 ms
65,508 KB
testcase_16 AC 60 ms
70,112 KB
testcase_17 AC 54 ms
64,464 KB
testcase_18 AC 78 ms
73,232 KB
testcase_19 AC 57 ms
66,112 KB
testcase_20 AC 51 ms
63,980 KB
testcase_21 AC 49 ms
62,004 KB
testcase_22 AC 54 ms
63,928 KB
testcase_23 AC 50 ms
63,308 KB
testcase_24 AC 50 ms
62,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S,K=map(int,input().split())
DP=[0]*(S+1)
DP[S]=1

mod=10**9+7
for i in range(N):
    NDP=[0]*(S+1)
    rest=N-i
    for j in range(S+1):
        if i==0:
            if DP[j]!=0:
                NDP[j]+=DP[j]
        else:            
            if DP[j]!=0 and j-rest*K>=0:
                NDP[j-rest*K]+=DP[j]
                NDP[j-rest*K]%=mod

    for j in range(S,-1,-1):
        if j+rest<=S:
            NDP[j]+=NDP[j+rest]
            NDP[j]%=mod
    DP=NDP

print(DP[0])
0