結果

問題 No.1011 Infinite Stairs
ユーザー c-yanc-yan
提出日時 2020-03-21 08:24:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 471 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 87,752 KB
最終ジャッジ日時 2024-12-17 20:13:10
合計ジャッジ時間 55,678 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 515 ms
50,748 KB
testcase_01 AC 517 ms
87,524 KB
testcase_02 AC 999 ms
50,388 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 506 ms
50,520 KB
testcase_07 TLE -
testcase_08 AC 511 ms
50,772 KB
testcase_09 AC 513 ms
87,392 KB
testcase_10 AC 1,041 ms
50,772 KB
testcase_11 TLE -
testcase_12 AC 745 ms
50,764 KB
testcase_13 TLE -
testcase_14 AC 787 ms
50,776 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 581 ms
87,400 KB
testcase_20 AC 953 ms
50,512 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,639 ms
87,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

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

buf0 = np.zeros(d * N + K + 1, dtype = np.int64)
buf1 = np.zeros(d * N + K + 1, dtype = np.int64)
buf0[0] = 1

for i in np.arange(N):
    t = 0
    for j in np.arange(d):
        t += buf0[j]
        t %= 1000000007
        buf1[j] = t
    for j in np.arange(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