結果

問題 No.1011 Infinite Stairs
ユーザー DrDrpilotDrDrpilot
提出日時 2022-06-24 13:15:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 563 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 270,336 KB
最終ジャッジ日時 2024-11-08 05:40:26
合計ジャッジ時間 6,224 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 72 ms
67,712 KB
testcase_03 AC 391 ms
201,216 KB
testcase_04 AC 563 ms
270,208 KB
testcase_05 AC 558 ms
270,336 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 113 ms
85,376 KB
testcase_08 AC 42 ms
51,840 KB
testcase_09 AC 49 ms
59,008 KB
testcase_10 AC 70 ms
67,712 KB
testcase_11 AC 267 ms
149,248 KB
testcase_12 AC 60 ms
63,744 KB
testcase_13 AC 163 ms
106,112 KB
testcase_14 AC 64 ms
64,896 KB
testcase_15 AC 129 ms
90,880 KB
testcase_16 AC 406 ms
208,512 KB
testcase_17 AC 428 ms
218,496 KB
testcase_18 AC 204 ms
123,520 KB
testcase_19 AC 57 ms
61,568 KB
testcase_20 AC 67 ms
65,792 KB
testcase_21 AC 134 ms
93,824 KB
testcase_22 AC 371 ms
193,664 KB
testcase_23 AC 131 ms
92,288 KB
testcase_24 AC 129 ms
91,136 KB
testcase_25 AC 204 ms
123,008 KB
testcase_26 AC 89 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d,k=map(int,input().split())
mod=10**9+7
dp=[[0]*(n*d+1) for _ in range(n+1)]
dp[0][0]=1
for i in range(1,n+1):
    tmp=0
    for j in range(n*d+1):
        if j==0:
            continue
        tmp+=dp[i-1][j-1]
        if j-d-1>=0:
            tmp-=dp[i-1][j-d-1]
        tmp%=mod
        dp[i][j]=tmp
print(dp[-1][k])
0