結果

問題 No.1011 Infinite Stairs
ユーザー googol_S0googol_S0
提出日時 2020-03-20 21:38:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 316 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 189,180 KB
最終ジャッジ日時 2024-12-15 04:50:27
合計ジャッジ時間 45,065 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,228 KB
testcase_01 AC 42 ms
144,560 KB
testcase_02 AC 90 ms
77,536 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 37 ms
60,592 KB
testcase_07 AC 254 ms
151,060 KB
testcase_08 AC 43 ms
69,484 KB
testcase_09 AC 49 ms
146,148 KB
testcase_10 AC 243 ms
74,868 KB
testcase_11 TLE -
testcase_12 AC 114 ms
73,512 KB
testcase_13 TLE -
testcase_14 AC 65 ms
71,492 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 85 ms
151,588 KB
testcase_20 AC 134 ms
74,112 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import *
mod=1000000007
N,D,K=map(int,input().split())
dp=list()
dp.append(copy([0]*(K+1)))
dp[0][0]=1
for i in range(N):
    dp.append(copy([0]*(K+1)))
    for j in range(1,D+1):
        for k in range(K):
            if k+j<=K:
                dp[i+1][k+j]=(dp[i+1][k+j]+dp[i][k])%mod
print(dp[N][K]%mod)
0