結果

問題 No.1892 Extended Fib Series
ユーザー 👑 rin204rin204
提出日時 2022-09-27 22:30:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 63,048 KB
最終ジャッジ日時 2024-06-02 01:18:18
合計ジャッジ時間 2,695 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,412 KB
testcase_01 AC 42 ms
63,048 KB
testcase_02 AC 38 ms
59,716 KB
testcase_03 AC 36 ms
59,900 KB
testcase_04 AC 40 ms
61,000 KB
testcase_05 AC 35 ms
59,740 KB
testcase_06 AC 40 ms
61,140 KB
testcase_07 AC 39 ms
59,896 KB
testcase_08 AC 42 ms
62,444 KB
testcase_09 AC 42 ms
61,496 KB
testcase_10 AC 42 ms
60,828 KB
testcase_11 AC 38 ms
58,700 KB
testcase_12 AC 40 ms
60,444 KB
testcase_13 AC 42 ms
61,320 KB
testcase_14 AC 34 ms
53,972 KB
testcase_15 AC 34 ms
52,264 KB
testcase_16 AC 35 ms
54,112 KB
testcase_17 AC 34 ms
51,940 KB
testcase_18 AC 32 ms
52,216 KB
testcase_19 AC 33 ms
52,412 KB
testcase_20 AC 33 ms
52,136 KB
testcase_21 AC 33 ms
52,680 KB
testcase_22 AC 33 ms
53,492 KB
testcase_23 AC 33 ms
54,132 KB
testcase_24 AC 32 ms
52,956 KB
testcase_25 AC 33 ms
53,216 KB
testcase_26 AC 32 ms
52,800 KB
testcase_27 AC 33 ms
52,792 KB
testcase_28 AC 33 ms
52,348 KB
testcase_29 AC 40 ms
60,948 KB
testcase_30 AC 41 ms
61,284 KB
testcase_31 AC 41 ms
60,676 KB
testcase_32 AC 41 ms
60,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

n, l = map(int, input().split())
dp = [0] * (n + 1)
dp[0] = 1
cum = [0] * (n + 1)
cum[0] = 1

for i in range(1, n + 1):
    dp[i] = cum[i - 1]
    if i - l >= 1:
        dp[i] -= cum[i - l - 1]
    dp[i] %= MOD
    cum[i] = cum[i - 1] + dp[i]
    cum[i] %= MOD
print(dp[-1])
0