結果

問題 No.1011 Infinite Stairs
ユーザー titiatitia
提出日時 2020-03-21 03:41:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 277 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 444,544 KB
最終ジャッジ日時 2024-12-16 07:22:13
合計ジャッジ時間 44,646 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
15,872 KB
testcase_01 AC 29 ms
306,048 KB
testcase_02 AC 412 ms
29,696 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 RE -
testcase_07 AC 248 ms
151,168 KB
testcase_08 RE -
testcase_09 AC 34 ms
119,936 KB
testcase_10 AC 171 ms
22,016 KB
testcase_11 TLE -
testcase_12 AC 134 ms
20,096 KB
testcase_13 TLE -
testcase_14 AC 65 ms
17,536 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,412 ms
170,624 KB
testcase_18 TLE -
testcase_19 AC 135 ms
117,760 KB
testcase_20 AC 77 ms
18,176 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,362 ms
189,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

DP=[[0]*(K*2+1) for i in range(N+1)]
DP[0][0]=1

for i in range(N):
    for j in range(K+1):
        DP[i+1][j+1]+=DP[i][j]
        DP[i+1][j+1+d]-=DP[i][j]

        DP[i+1][j+1]+=DP[i+1][j]
        DP[i+1][j+1]%=mod

print(DP[N][K])
0