結果

問題 No.1011 Infinite Stairs
ユーザー timitimi
提出日時 2020-10-13 15:04:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 587 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 272,128 KB
最終ジャッジ日時 2024-07-20 18:29:55
合計ジャッジ時間 4,333 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,584 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 57 ms
65,536 KB
testcase_03 AC 406 ms
202,496 KB
testcase_04 AC 122 ms
91,520 KB
testcase_05 AC 595 ms
272,128 KB
testcase_06 WA -
testcase_07 AC 59 ms
63,360 KB
testcase_08 WA -
testcase_09 AC 46 ms
59,008 KB
testcase_10 AC 57 ms
62,592 KB
testcase_11 AC 127 ms
91,392 KB
testcase_12 AC 51 ms
62,464 KB
testcase_13 AC 108 ms
91,264 KB
testcase_14 AC 49 ms
61,312 KB
testcase_15 AC 118 ms
91,776 KB
testcase_16 AC 298 ms
160,256 KB
testcase_17 AC 71 ms
71,040 KB
testcase_18 AC 195 ms
118,272 KB
testcase_19 AC 52 ms
62,464 KB
testcase_20 AC 49 ms
61,440 KB
testcase_21 AC 108 ms
84,224 KB
testcase_22 AC 170 ms
108,416 KB
testcase_23 AC 119 ms
88,960 KB
testcase_24 AC 127 ms
91,648 KB
testcase_25 AC 178 ms
111,232 KB
testcase_26 AC 75 ms
71,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,d,K=map(int, input().split())
mod=10**9+7
dp=[[0 for i in range(K+1)] for j in range(N+1)]
dp[0][0]=1
f=0
for i in range(K+1):
    if i==0:
        dp[1][i]=0
    elif i<min(d+1,K):
        f+=1
        dp[1][i]=f 
    else:
        dp[1][i]=f 

for i in range(1,N):
    for j in range(1,K+1):
        if j-d-1>0:
            dp[i+1][j]=dp[i][j-1]-dp[i][j-d-1]+dp[i+1][j-1]
            dp[i+1][j]%=mod
        else:
            dp[i+1][j]=dp[i][j-1]+dp[i+1][j-1]
            dp[i+1][j]%=mod
        if dp[i+1][j]<0:
            dp[i+1][j]=0

        
print((dp[-1][-1]-dp[-1][-2])%mod)
0