結果

問題 No.1011 Infinite Stairs
ユーザー FromBooskaFromBooska
提出日時 2023-03-21 21:12:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 793 ms / 2,000 ms
コード長 596 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 225,988 KB
最終ジャッジ日時 2024-09-18 14:30:56
合計ジャッジ時間 5,301 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,896 KB
testcase_01 AC 34 ms
52,776 KB
testcase_02 AC 57 ms
76,108 KB
testcase_03 AC 549 ms
174,264 KB
testcase_04 AC 114 ms
78,296 KB
testcase_05 AC 793 ms
225,988 KB
testcase_06 AC 37 ms
52,052 KB
testcase_07 AC 60 ms
75,620 KB
testcase_08 AC 39 ms
51,712 KB
testcase_09 AC 46 ms
60,032 KB
testcase_10 AC 55 ms
71,168 KB
testcase_11 AC 144 ms
79,452 KB
testcase_12 AC 55 ms
68,788 KB
testcase_13 AC 113 ms
77,636 KB
testcase_14 AC 51 ms
62,296 KB
testcase_15 AC 124 ms
78,312 KB
testcase_16 AC 412 ms
147,552 KB
testcase_17 AC 80 ms
76,160 KB
testcase_18 AC 248 ms
117,720 KB
testcase_19 AC 53 ms
69,632 KB
testcase_20 AC 48 ms
63,872 KB
testcase_21 AC 130 ms
91,268 KB
testcase_22 AC 201 ms
98,540 KB
testcase_23 AC 152 ms
107,804 KB
testcase_24 AC 149 ms
97,328 KB
testcase_25 AC 212 ms
104,440 KB
testcase_26 AC 76 ms
76,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# dp[i階][j回の移動]回数は当然TLEした
# 実験するとdの個数分だけの前行の和となる
# 累積sdpとするか

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

#print(dp)
#print(sdp)

for i in range(1, N+1):
    new_dp =[0]*(K+1)
    for j in range(K+1):
        new_dp[j] = sdp[j]-sdp[max(0, j-d)]
        new_dp[j] %= mod
    dp = new_dp
    sdp = [0]
    temp = 0
    for j in range(K+1):
        temp += dp[j]
        temp %= mod
        sdp.append(temp)
    #print(dp)
    #print(sdp)

ans = dp[K]%mod
print(ans)
0