結果

問題 No.1011 Infinite Stairs
ユーザー komkompikomkompi
提出日時 2020-03-22 12:53:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 289 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 293,888 KB
最終ジャッジ日時 2024-12-24 17:14:22
合計ジャッジ時間 51,956 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
56,960 KB
testcase_01 AC 45 ms
273,280 KB
testcase_02 AC 414 ms
116,480 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 45 ms
56,832 KB
testcase_07 AC 1,719 ms
102,528 KB
testcase_08 AC 52 ms
63,872 KB
testcase_09 AC 65 ms
164,608 KB
testcase_10 AC 1,519 ms
93,440 KB
testcase_11 TLE -
testcase_12 AC 514 ms
88,960 KB
testcase_13 TLE -
testcase_14 AC 190 ms
83,328 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 273 ms
187,904 KB
testcase_20 AC 579 ms
84,480 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
N,d,K=map(int,input().split())

dp=[[0]*(K+1) for i in range(N+1)]
dp[0][0]=1

for i in range(N):
    for j in range(K+1):
        for p in range(d):
            if j-p-1>=0:
                dp[i+1][j]+=dp[i][j-p-1]

print(dp[-1][-1]%(10**9+7))
#print(dp)
0