結果

問題 No.1011 Infinite Stairs
ユーザー H3PO4H3PO4
提出日時 2021-08-23 09:29:45
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,496 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 45,336 KB
最終ジャッジ日時 2024-07-17 12:19:44
合計ジャッジ時間 19,900 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 506 ms
44,436 KB
testcase_01 AC 509 ms
43,836 KB
testcase_02 AC 524 ms
43,964 KB
testcase_03 AC 1,085 ms
44,436 KB
testcase_04 AC 616 ms
44,432 KB
testcase_05 AC 1,496 ms
45,336 KB
testcase_06 AC 506 ms
44,436 KB
testcase_07 AC 522 ms
44,052 KB
testcase_08 AC 514 ms
44,436 KB
testcase_09 AC 507 ms
43,920 KB
testcase_10 AC 514 ms
43,924 KB
testcase_11 AC 634 ms
44,176 KB
testcase_12 AC 510 ms
44,048 KB
testcase_13 AC 590 ms
43,964 KB
testcase_14 AC 507 ms
44,312 KB
testcase_15 AC 613 ms
44,300 KB
testcase_16 AC 925 ms
44,184 KB
testcase_17 AC 551 ms
44,300 KB
testcase_18 AC 743 ms
43,928 KB
testcase_19 AC 511 ms
44,440 KB
testcase_20 AC 510 ms
43,924 KB
testcase_21 AC 611 ms
44,048 KB
testcase_22 AC 716 ms
44,048 KB
testcase_23 AC 623 ms
44,300 KB
testcase_24 AC 630 ms
44,440 KB
testcase_25 AC 711 ms
44,572 KB
testcase_26 AC 558 ms
43,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, D, K = map(int, input().split())
MOD = 10 ** 9 + 7
dp = np.zeros(K + 1, dtype=np.int64)
dp[0] = 1
for _ in range(N):
    new_dp = np.zeros(K + 1, dtype=np.int64)
    new_dp[1:] += dp[:-1]
    new_dp[D + 1:] -= dp[:-D - 1]
    new_dp %= MOD
    dp = np.cumsum(new_dp) % MOD
print(dp[K])
0