結果

問題 No.1011 Infinite Stairs
ユーザー c-yanc-yan
提出日時 2020-03-21 00:18:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 488 bytes
コンパイル時間 725 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,488 KB
最終ジャッジ日時 2024-12-15 22:12:02
合計ジャッジ時間 23,345 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,000 KB
testcase_01 AC 31 ms
28,416 KB
testcase_02 AC 116 ms
16,256 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 389 ms
12,160 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 134 ms
11,776 KB
testcase_11 AC 1,310 ms
14,080 KB
testcase_12 AC 75 ms
11,008 KB
testcase_13 AC 692 ms
13,952 KB
testcase_14 AC 81 ms
11,136 KB
testcase_15 AC 453 ms
12,288 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 940 ms
14,080 KB
testcase_19 AC 42 ms
10,880 KB
testcase_20 AC 110 ms
11,648 KB
testcase_21 AC 517 ms
13,440 KB
testcase_22 AC 1,968 ms
16,640 KB
testcase_23 AC 502 ms
13,696 KB
testcase_24 AC 473 ms
12,800 KB
testcase_25 AC 930 ms
13,696 KB
testcase_26 AC 248 ms
31,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, d, K = map(int, input().split())

    buf0 = [0] * (d * N + K + 1)
    buf1 = [0] * (d * N + K + 1)
    buf0[0] = 1

    for i in range(N):
        t = 0
        for j in range(d):
            t += buf0[j]
            t %= 1000000007
            buf1[j] = t
        for j in range(d, (i + 1) * d):
            t -= buf0[j - d]
            t += buf0[j]
            t %= 1000000007
            buf1[j] = t
        buf0, buf1 = buf1, buf0

    print(buf0[K - N])


main()
0