結果

問題 No.1011 Infinite Stairs
ユーザー 👑 KazunKazun
提出日時 2021-02-19 05:31:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 373 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 64,848 KB
最終ジャッジ日時 2024-07-17 12:16:42
合計ジャッジ時間 3,622 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,364 KB
testcase_01 AC 36 ms
52,940 KB
testcase_02 AC 54 ms
63,992 KB
testcase_03 AC 262 ms
64,472 KB
testcase_04 AC 90 ms
63,156 KB
testcase_05 AC 373 ms
64,848 KB
testcase_06 AC 36 ms
52,692 KB
testcase_07 AC 51 ms
62,416 KB
testcase_08 AC 36 ms
52,596 KB
testcase_09 AC 44 ms
61,308 KB
testcase_10 AC 48 ms
61,740 KB
testcase_11 AC 93 ms
63,040 KB
testcase_12 AC 49 ms
62,844 KB
testcase_13 AC 75 ms
63,104 KB
testcase_14 AC 46 ms
61,184 KB
testcase_15 AC 84 ms
63,080 KB
testcase_16 AC 198 ms
63,728 KB
testcase_17 AC 62 ms
62,980 KB
testcase_18 AC 134 ms
63,836 KB
testcase_19 AC 49 ms
61,656 KB
testcase_20 AC 45 ms
60,400 KB
testcase_21 AC 82 ms
62,700 KB
testcase_22 AC 119 ms
63,240 KB
testcase_23 AC 89 ms
63,148 KB
testcase_24 AC 93 ms
62,472 KB
testcase_25 AC 123 ms
63,052 KB
testcase_26 AC 64 ms
62,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,d,K=map(int,input().split())
Mod=10**9+7

X=[0]*(K+1)
Y=[0]*(K+1)
Y[0]=1

for _ in range(N):
    x=0
    for i in range(K+1):
        X[i]=x=(x+Y[i])%Mod

    for i in range(K+1):
        if i==0:
            Y[i]=0
        elif 1<=i<=d:
            Y[i]=X[i-1]
        else:
            Y[i]=(X[i-1]-X[i-d-1])%Mod
print(Y[K])
0