結果

問題 No.1892 Extended Fib Series
ユーザー yassu0320yassu0320
提出日時 2022-04-02 00:39:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 1,612 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 81,096 KB
最終ジャッジ日時 2024-04-30 21:41:51
合計ジャッジ時間 4,144 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
79,504 KB
testcase_01 AC 114 ms
80,900 KB
testcase_02 AC 84 ms
79,628 KB
testcase_03 AC 82 ms
80,000 KB
testcase_04 AC 100 ms
80,856 KB
testcase_05 AC 84 ms
79,884 KB
testcase_06 AC 123 ms
80,860 KB
testcase_07 AC 90 ms
80,860 KB
testcase_08 AC 100 ms
80,960 KB
testcase_09 AC 101 ms
80,840 KB
testcase_10 AC 102 ms
80,640 KB
testcase_11 AC 84 ms
79,744 KB
testcase_12 AC 95 ms
80,492 KB
testcase_13 AC 98 ms
80,944 KB
testcase_14 AC 83 ms
79,520 KB
testcase_15 AC 86 ms
79,604 KB
testcase_16 AC 84 ms
79,860 KB
testcase_17 AC 87 ms
79,788 KB
testcase_18 AC 86 ms
79,620 KB
testcase_19 AC 83 ms
79,904 KB
testcase_20 AC 88 ms
79,796 KB
testcase_21 AC 85 ms
79,888 KB
testcase_22 AC 86 ms
79,624 KB
testcase_23 AC 83 ms
79,912 KB
testcase_24 AC 85 ms
79,952 KB
testcase_25 AC 87 ms
79,688 KB
testcase_26 AC 84 ms
79,940 KB
testcase_27 AC 86 ms
79,964 KB
testcase_28 AC 86 ms
79,516 KB
testcase_29 AC 89 ms
81,096 KB
testcase_30 AC 88 ms
80,976 KB
testcase_31 AC 95 ms
80,920 KB
testcase_32 AC 127 ms
80,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

from pprint import pprint
from string import ascii_lowercase as letter
from sys import setrecursionlimit, stdin
from typing import Dict, Iterable, Set

try:
    import pypyjit

    pypyjit.set_param("max_unroll_recursion=-1")
except ModuleNotFoundError:
    ...

INF: int = (1 << 62) - 1
MOD1000000007 = 10**9 + 7
MOD998244353 = 998244353
setrecursionlimit(500_000)
readline = stdin.readline
input = lambda: stdin.readline().rstrip("\r\n")


def inputs(type_=int):
    ins = input().split()

    if isinstance(type_, Iterable):
        return [t(x) for t, x in zip(type_, ins)]
    else:
        return list(map(type_, ins))


def input_(type_=int):
    (a, ) = inputs(type_)
    return a


def input1() -> int:
    return int(readline())


inputi = input1


def input2():
    a = readline().split()
    assert len(a) == 2
    a[0] = int(a[0])
    a[1] = int(a[1])
    return a


def input3():
    a = readline().split()
    assert len(a) == 3
    a[0] = int(a[0])
    a[1] = int(a[1])
    a[2] = int(a[2])
    return a


def input4():
    a = readline().split()
    assert len(a) == 4
    a[0] = int(a[0])
    a[1] = int(a[1])
    a[2] = int(a[2])
    a[3] = int(a[3])
    return a


# start coding
from typing import List, Optional

n, l = input2()
mod = MOD1000000007

if n < l:
    print(pow(2, n - 1, mod))
    exit()

a: List[Optional[int]] = [None] * (n + 1)
a[0] = 1
for i in range(1, l):
    a[i] = pow(2, i - 1, mod)

s = 0
for i in range(l):
    s += a[i]
    s %= mod

for i in range(l, n + 1):
    a[i] = s
    s -= a[i - l]
    s += a[i]
    s %= mod

# print(a)
print(a[-1])
0