結果

問題 No.1011 Infinite Stairs
ユーザー komkompikomkompi
提出日時 2020-03-29 03:28:58
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 314 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 33,644 KB
最終ジャッジ日時 2025-01-02 12:59:11
合計ジャッジ時間 35,836 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
15,360 KB
testcase_01 AC 32 ms
25,628 KB
testcase_02 AC 253 ms
15,744 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 31 ms
16,800 KB
testcase_07 AC 142 ms
29,940 KB
testcase_08 AC 33 ms
16,804 KB
testcase_09 AC 32 ms
17,312 KB
testcase_10 AC 107 ms
17,572 KB
testcase_11 TLE -
testcase_12 AC 85 ms
10,240 KB
testcase_13 AC 1,414 ms
15,232 KB
testcase_14 AC 51 ms
10,112 KB
testcase_15 AC 1,724 ms
15,360 KB
testcase_16 TLE -
testcase_17 AC 707 ms
11,648 KB
testcase_18 TLE -
testcase_19 AC 87 ms
10,368 KB
testcase_20 AC 54 ms
10,240 KB
testcase_21 AC 1,772 ms
17,280 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 768 ms
33,644 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