結果

問題 No.1011 Infinite Stairs
ユーザー universatouniversato
提出日時 2020-03-20 23:51:08
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 518 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 1,065,832 KB
最終ジャッジ日時 2024-12-15 21:04:14
合計ジャッジ時間 37,462 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 WA -
testcase_07 AC 729 ms
336,736 KB
testcase_08 AC 40 ms
52,800 KB
testcase_09 AC 45 ms
60,604 KB
testcase_10 AC 185 ms
130,604 KB
testcase_11 TLE -
testcase_12 AC 112 ms
92,324 KB
testcase_13 MLE -
testcase_14 AC 130 ms
104,496 KB
testcase_15 AC 1,030 ms
425,500 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 82 ms
79,736 KB
testcase_20 AC 177 ms
117,192 KB
testcase_21 AC 1,089 ms
430,812 KB
testcase_22 TLE -
testcase_23 AC 1,074 ms
401,684 KB
testcase_24 AC 1,016 ms
408,848 KB
testcase_25 TLE -
testcase_26 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7

n,d,k = map(int,input().split())

w = d*n+1
dp = [[0] * w for i in range(n+1) ]
dp[0][0] = 1

for i in range(n):
    # for j in range(d*n,0,-1):
    s = [0] * (d*n+1)
    s[0] = dp[i][0]
    # print(s)
    for j in range(d-1):
        s[j+1] = s[j] + dp[i][j+1]
    # print(s,i)
    for j in range(d-1,w-1):
        tt1 = dp[i][j+1] 
        tt2 = dp[i][j+1-d]
        s[j+1] = s[j] + tt1 - tt2
    # print(s)
    for j in range(0,d*n):
        dp[i+1][j] = s[j-1]

# print(dp)
print(dp[n][k] % mod)
0