結果

問題 No.1011 Infinite Stairs
ユーザー NagisaNagisa
提出日時 2020-03-20 22:55:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 378 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,660 KB
最終ジャッジ日時 2024-12-15 07:45:11
合計ジャッジ時間 43,304 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,568 KB
testcase_01 AC 27 ms
26,660 KB
testcase_02 AC 397 ms
17,696 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 29 ms
17,572 KB
testcase_07 AC 238 ms
23,168 KB
testcase_08 RE -
testcase_09 AC 30 ms
22,912 KB
testcase_10 AC 166 ms
17,704 KB
testcase_11 TLE -
testcase_12 AC 133 ms
17,696 KB
testcase_13 TLE -
testcase_14 AC 59 ms
17,572 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,127 ms
24,664 KB
testcase_18 TLE -
testcase_19 AC 134 ms
25,828 KB
testcase_20 AC 73 ms
17,444 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,301 ms
26,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9 + 7
N, d, K = map(int,input().split())

dp = [0]*(K+1)
for k in range(1,d+1):
    dp[k] = 1

for i in range(N-1):
    s = [0]*(K+1)
    for j in range(1,K+1):
        s[j] = s[j-1] + dp[j]
        s[j] %= MOD
#    print(s)
    new = [0]*(K+1)
    for j in range(i+1,K+1):
        new[j] = s[j-1] - s[max(0,j-d-1)]
        new[j] %= MOD
    dp = new[::]
print(dp[K])
0