結果

問題 No.1011 Infinite Stairs
ユーザー NagisaNagisa
提出日時 2020-03-20 21:54:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 264 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 303,756 KB
最終ジャッジ日時 2024-12-15 05:32:41
合計ジャッジ時間 45,818 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
58,724 KB
testcase_01 AC 34 ms
273,976 KB
testcase_02 AC 96 ms
85,776 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 33 ms
59,504 KB
testcase_07 AC 264 ms
180,568 KB
testcase_08 AC 38 ms
65,792 KB
testcase_09 AC 44 ms
68,212 KB
testcase_10 AC 265 ms
77,188 KB
testcase_11 TLE -
testcase_12 AC 117 ms
74,768 KB
testcase_13 TLE -
testcase_14 AC 60 ms
71,936 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 82 ms
174,552 KB
testcase_20 AC 152 ms
72,396 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9 + 7
N, d, K = map(int,input().split())
dp = [[0]*(N+1) for k in range(K+d+1)]
dp[0][0] = 1
for i in range(K+1):
    for s in range(N):
        for j in range(1,d+1):
            dp[i+j][s+1] += dp[i][s]
            dp[i+j][s+1] %= MOD

print(dp[K][N])
0