結果

問題 No.1011 Infinite Stairs
ユーザー TsuboTsubo
提出日時 2020-03-21 09:36:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 480 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 249,380 KB
最終ジャッジ日時 2024-12-17 22:41:53
合計ジャッジ時間 33,832 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,444 KB
testcase_01 AC 28 ms
185,344 KB
testcase_02 AC 218 ms
28,064 KB
testcase_03 TLE -
testcase_04 AC 1,802 ms
128,544 KB
testcase_05 TLE -
testcase_06 AC 28 ms
17,700 KB
testcase_07 AC 139 ms
151,424 KB
testcase_08 AC 28 ms
17,444 KB
testcase_09 AC 28 ms
189,696 KB
testcase_10 AC 103 ms
22,304 KB
testcase_11 TLE -
testcase_12 AC 81 ms
13,824 KB
testcase_13 AC 1,312 ms
83,840 KB
testcase_14 AC 42 ms
11,904 KB
testcase_15 AC 1,605 ms
88,064 KB
testcase_16 TLE -
testcase_17 AC 622 ms
49,536 KB
testcase_18 TLE -
testcase_19 AC 80 ms
13,184 KB
testcase_20 AC 50 ms
12,160 KB
testcase_21 AC 1,643 ms
92,928 KB
testcase_22 TLE -
testcase_23 AC 1,947 ms
99,968 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 719 ms
179,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
def main():
    #入力
    readline=stdin.readline
    N,d,K=map(int,readline().split())
    dp=[[0]*(K+1) for _ in range(N+1)]
    dp[0][0]=1

    for i in range(1,N+1):
        for j in range(i,K+1):
            dp[i][j]+=dp[i-1][j-1]
            if 0<=j-d-1<=K:
                dp[i][j]-=dp[i-1][j-d-1]
        for j in range(i,K+1):
            dp[i][j]+=dp[i][j-1]
            dp[i][j]%=10**9+7

    print(dp[N][K])

if __name__=="__main__":
    main()
0