結果

問題 No.1011 Infinite Stairs
ユーザー titiatitia
提出日時 2020-03-21 03:42:15
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 277 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 482,176 KB
最終ジャッジ日時 2024-12-16 07:23:55
合計ジャッジ時間 6,441 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
52,096 KB
testcase_01 AC 47 ms
51,968 KB
testcase_02 AC 70 ms
67,328 KB
testcase_03 AC 606 ms
336,512 KB
testcase_04 AC 142 ms
108,928 KB
testcase_05 AC 927 ms
482,176 KB
testcase_06 RE -
testcase_07 AC 57 ms
64,128 KB
testcase_08 RE -
testcase_09 AC 47 ms
59,136 KB
testcase_10 AC 54 ms
62,592 KB
testcase_11 AC 161 ms
118,656 KB
testcase_12 AC 55 ms
62,592 KB
testcase_13 AC 118 ms
95,488 KB
testcase_14 AC 51 ms
59,904 KB
testcase_15 AC 137 ms
106,880 KB
testcase_16 AC 420 ms
253,552 KB
testcase_17 AC 100 ms
92,564 KB
testcase_18 AC 255 ms
173,312 KB
testcase_19 AC 55 ms
62,208 KB
testcase_20 AC 54 ms
60,032 KB
testcase_21 AC 138 ms
106,368 KB
testcase_22 AC 219 ms
152,960 KB
testcase_23 AC 153 ms
115,840 KB
testcase_24 AC 161 ms
120,192 KB
testcase_25 AC 232 ms
159,232 KB
testcase_26 AC 93 ms
80,512 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