結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
16,128 KB
testcase_01 AC 32 ms
315,008 KB
testcase_02 AC 353 ms
44,544 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 RE -
testcase_07 AC 213 ms
366,848 KB
testcase_08 RE -
testcase_09 AC 30 ms
285,824 KB
testcase_10 AC 146 ms
25,984 KB
testcase_11 TLE -
testcase_12 AC 108 ms
22,400 KB
testcase_13 TLE -
testcase_14 AC 56 ms
18,304 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,083 ms
160,040 KB
testcase_18 TLE -
testcase_19 AC 107 ms
14,976 KB
testcase_20 AC 62 ms
14,208 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,155 ms
298,880 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]

print(DP[N][K]%mod)
0