結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
16,128 KB
testcase_01 AC 30 ms
16,000 KB
testcase_02 AC 395 ms
26,624 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 30 ms
15,872 KB
testcase_07 AC 243 ms
126,848 KB
testcase_08 AC 29 ms
16,000 KB
testcase_09 AC 30 ms
138,880 KB
testcase_10 AC 170 ms
20,864 KB
testcase_11 TLE -
testcase_12 AC 126 ms
19,328 KB
testcase_13 TLE -
testcase_14 AC 66 ms
17,280 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,118 ms
137,728 KB
testcase_18 TLE -
testcase_19 AC 123 ms
13,184 KB
testcase_20 AC 68 ms
12,928 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,321 ms
137,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

DP=[[0]*(K+d+2) 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