結果

問題 No.1011 Infinite Stairs
ユーザー stngstng
提出日時 2022-08-17 21:49:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 641 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 259,860 KB
最終ジャッジ日時 2024-10-05 03:05:41
合計ジャッジ時間 4,770 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,096 KB
testcase_01 AC 32 ms
51,840 KB
testcase_02 AC 58 ms
72,320 KB
testcase_03 AC 526 ms
258,380 KB
testcase_04 AC 98 ms
77,040 KB
testcase_05 AC 641 ms
258,480 KB
testcase_06 AC 33 ms
52,948 KB
testcase_07 AC 47 ms
67,180 KB
testcase_08 AC 33 ms
52,864 KB
testcase_09 AC 38 ms
60,736 KB
testcase_10 AC 46 ms
65,640 KB
testcase_11 AC 105 ms
77,892 KB
testcase_12 AC 46 ms
65,068 KB
testcase_13 AC 81 ms
76,484 KB
testcase_14 AC 42 ms
61,704 KB
testcase_15 AC 94 ms
77,348 KB
testcase_16 AC 331 ms
259,860 KB
testcase_17 AC 67 ms
76,024 KB
testcase_18 AC 242 ms
231,008 KB
testcase_19 AC 46 ms
65,152 KB
testcase_20 AC 45 ms
61,620 KB
testcase_21 AC 123 ms
130,280 KB
testcase_22 AC 202 ms
200,712 KB
testcase_23 AC 138 ms
145,160 KB
testcase_24 AC 148 ms
151,624 KB
testcase_25 AC 214 ms
209,948 KB
testcase_26 AC 68 ms
76,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d,K = map(int,input().split())
dp = [0]*(K+1)
dp[0] = 1
mod = 10**9+7

for i in range(n):
    ndp = [0]*(K+1)
    dr = [0]*(K+2)
    for j in range(K+1):
        dr[j+1] = dr[j]+dp[j]
        dr[j+1] %= mod
    
    for j in range(K+1):
        ndp[j] = dr[j]-dr[max(0,j-d)]+mod
        ndp[j] %= mod
    #print(dr,dp,ndp,"d")
    dp = ndp[:]

print(dp[K])
0