結果

問題 No.1011 Infinite Stairs
ユーザー hedwig100hedwig100
提出日時 2020-04-03 21:10:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 629 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 271,072 KB
最終ジャッジ日時 2024-07-17 12:05:00
合計ジャッジ時間 4,619 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,400 KB
testcase_01 AC 37 ms
52,968 KB
testcase_02 AC 53 ms
63,800 KB
testcase_03 AC 435 ms
199,160 KB
testcase_04 AC 115 ms
93,108 KB
testcase_05 AC 629 ms
271,072 KB
testcase_06 AC 36 ms
52,572 KB
testcase_07 AC 46 ms
61,404 KB
testcase_08 AC 36 ms
51,880 KB
testcase_09 AC 40 ms
59,656 KB
testcase_10 AC 46 ms
60,892 KB
testcase_11 AC 123 ms
93,156 KB
testcase_12 AC 44 ms
60,708 KB
testcase_13 AC 98 ms
92,752 KB
testcase_14 AC 44 ms
60,636 KB
testcase_15 AC 110 ms
93,212 KB
testcase_16 AC 308 ms
157,980 KB
testcase_17 AC 65 ms
69,672 KB
testcase_18 AC 197 ms
117,352 KB
testcase_19 AC 46 ms
61,240 KB
testcase_20 AC 44 ms
59,984 KB
testcase_21 AC 105 ms
83,260 KB
testcase_22 AC 170 ms
108,152 KB
testcase_23 AC 118 ms
88,296 KB
testcase_24 AC 125 ms
89,420 KB
testcase_25 AC 178 ms
109,124 KB
testcase_26 AC 66 ms
70,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 10
import sys
input = sys.stdin.readline
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)

def main():
    n,d,k = map(int,input().split())
    dp = [[0] * (k + 1) for _ in range(n + 1)]
    dp[0][0] = 1
    for i in range(n):
        for j in range(1,k + 1):
            dp[i + 1][j] = (dp[i + 1][j - 1] + dp[i][j - 1])%MOD
            if j - d  - 1>= 0:
                dp[i + 1][j] += MOD - dp[i][j - d - 1]
                dp[i + 1][j] %= MOD
    print(dp[-1][-1])

if __name__ =='__main__':
    main()   
0