結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,440 KB
testcase_01 AC 29 ms
26,112 KB
testcase_02 AC 254 ms
17,568 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 30 ms
17,568 KB
testcase_07 AC 923 ms
25,984 KB
testcase_08 AC 29 ms
17,696 KB
testcase_09 AC 29 ms
26,368 KB
testcase_10 AC 290 ms
18,592 KB
testcase_11 TLE -
testcase_12 AC 141 ms
18,080 KB
testcase_13 AC 1,751 ms
14,080 KB
testcase_14 AC 165 ms
11,008 KB
testcase_15 AC 1,118 ms
12,288 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 63 ms
10,752 KB
testcase_20 AC 229 ms
11,776 KB
testcase_21 AC 1,360 ms
13,440 KB
testcase_22 TLE -
testcase_23 AC 1,220 ms
13,696 KB
testcase_24 AC 1,146 ms
12,928 KB
testcase_25 TLE -
testcase_26 AC 624 ms
27,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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])
0