結果

問題 No.1011 Infinite Stairs
ユーザー komkompikomkompi
提出日時 2020-03-29 03:32:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 458 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,652 KB
実行使用メモリ 258,008 KB
最終ジャッジ日時 2024-07-17 12:04:05
合計ジャッジ時間 3,864 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,620 KB
testcase_01 AC 41 ms
52,424 KB
testcase_02 AC 54 ms
67,780 KB
testcase_03 AC 337 ms
246,436 KB
testcase_04 AC 75 ms
76,232 KB
testcase_05 AC 458 ms
258,008 KB
testcase_06 AC 37 ms
52,372 KB
testcase_07 AC 47 ms
63,324 KB
testcase_08 AC 38 ms
52,388 KB
testcase_09 AC 41 ms
59,428 KB
testcase_10 AC 46 ms
62,832 KB
testcase_11 AC 78 ms
76,192 KB
testcase_12 AC 47 ms
62,980 KB
testcase_13 AC 67 ms
75,656 KB
testcase_14 AC 44 ms
60,280 KB
testcase_15 AC 79 ms
76,528 KB
testcase_16 AC 245 ms
255,004 KB
testcase_17 AC 60 ms
75,828 KB
testcase_18 AC 164 ms
173,912 KB
testcase_19 AC 46 ms
62,444 KB
testcase_20 AC 44 ms
60,940 KB
testcase_21 AC 94 ms
106,024 KB
testcase_22 AC 145 ms
152,700 KB
testcase_23 AC 103 ms
114,892 KB
testcase_24 AC 108 ms
119,964 KB
testcase_25 AC 146 ms
159,360 KB
testcase_26 AC 61 ms
76,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp=[0]*(K+1)
dp[0]=1

for i in range(N):
    temp=[0]*(K+1)
    wa=dp[0]
    for j in range(1,K+1):
        #sumとってたやば
        temp[j]=wa%(10**9+7)
        wa+=dp[j]
        if j>=d:
            wa-=dp[j-d]
        
    dp=temp[:]
print(dp[-1]%(10**9+7))
0