結果

問題 No.1011 Infinite Stairs
ユーザー komkompikomkompi
提出日時 2020-03-29 03:29:21
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 314 bytes
コンパイル時間 540 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 411,708 KB
最終ジャッジ日時 2025-01-02 13:00:10
合計ジャッジ時間 18,847 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
57,344 KB
testcase_01 AC 35 ms
350,076 KB
testcase_02 AC 84 ms
82,560 KB
testcase_03 TLE -
testcase_04 AC 560 ms
257,928 KB
testcase_05 TLE -
testcase_06 AC 35 ms
52,096 KB
testcase_07 AC 70 ms
76,288 KB
testcase_08 AC 33 ms
51,840 KB
testcase_09 AC 36 ms
58,240 KB
testcase_10 AC 64 ms
76,240 KB
testcase_11 AC 708 ms
274,984 KB
testcase_12 AC 60 ms
76,240 KB
testcase_13 AC 344 ms
171,904 KB
testcase_14 AC 51 ms
66,304 KB
testcase_15 AC 375 ms
181,588 KB
testcase_16 TLE -
testcase_17 AC 166 ms
90,880 KB
testcase_18 AC 1,247 ms
296,396 KB
testcase_19 AC 55 ms
74,368 KB
testcase_20 AC 53 ms
67,840 KB
testcase_21 AC 441 ms
210,284 KB
testcase_22 AC 1,385 ms
297,204 KB
testcase_23 AC 511 ms
242,212 KB
testcase_24 AC 495 ms
224,076 KB
testcase_25 AC 1,146 ms
287,500 KB
testcase_26 AC 163 ms
411,708 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
        wa+=dp[j]
        if j>=d:
            wa-=dp[j-d]
    dp=temp[:]
print(dp[-1]%(10**9+7))
0