結果

問題 No.1269 I hate Fibonacci Number
ユーザー 👑 rin204rin204
提出日時 2023-12-29 16:19:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,290 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 89,524 KB
最終ジャッジ日時 2023-12-29 16:20:20
合計ジャッジ時間 27,198 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,736 KB
testcase_01 AC 42 ms
55,608 KB
testcase_02 AC 153 ms
76,488 KB
testcase_03 AC 41 ms
55,608 KB
testcase_04 AC 46 ms
61,296 KB
testcase_05 AC 43 ms
55,608 KB
testcase_06 AC 43 ms
55,608 KB
testcase_07 AC 46 ms
61,296 KB
testcase_08 AC 48 ms
61,544 KB
testcase_09 AC 45 ms
55,608 KB
testcase_10 AC 42 ms
55,608 KB
testcase_11 AC 44 ms
61,292 KB
testcase_12 AC 45 ms
61,292 KB
testcase_13 AC 1,807 ms
77,484 KB
testcase_14 AC 2,274 ms
77,860 KB
testcase_15 AC 264 ms
76,456 KB
testcase_16 AC 1,731 ms
77,972 KB
testcase_17 AC 111 ms
76,196 KB
testcase_18 AC 1,955 ms
77,980 KB
testcase_19 AC 1,291 ms
77,080 KB
testcase_20 AC 373 ms
76,448 KB
testcase_21 AC 1,224 ms
77,216 KB
testcase_22 AC 1,052 ms
76,972 KB
testcase_23 AC 1,166 ms
76,708 KB
testcase_24 AC 556 ms
76,700 KB
testcase_25 AC 691 ms
76,564 KB
testcase_26 AC 129 ms
76,324 KB
testcase_27 AC 53 ms
66,384 KB
testcase_28 AC 350 ms
76,580 KB
testcase_29 AC 631 ms
76,440 KB
testcase_30 AC 273 ms
76,452 KB
testcase_31 AC 2,954 ms
79,904 KB
testcase_32 AC 721 ms
76,828 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


class AhoCorasick:
    def __init__(self, words=None):
        if words is None:
            self.words = []
        else:
            self.words = words

    def register(self, word):
        self.words.append(word)

    def build(self):
        self.children = [{}]
        self.match = [[]]

        for i, word in enumerate(self.words):
            self._register(i, word)

        self.failure = [0] * len(self.children)
        self._create_failure()

    def _register(self, i, word):
        k = 0
        for s in word:
            if s in self.children[k]:
                k = self.children[k][s]
            else:
                le = len(self.children)
                self.children[k][s] = le
                self.children.append({})
                self.match.append([])
                k = le

        self.match[k].append(i)

    def _create_failure(self):
        queue = deque(self.children[0].values())
        while queue:
            k = queue.popleft()
            b = self.failure[k]
            for s, j in self.children[k].items():
                self.failure[j] = self._next(b, s)
                self.match[j] += self.match[self.failure[j]]
                queue.append(j)

    def _next(self, k, s):
        while 1:
            if s in self.children[k]:
                return self.children[k][s]
            elif k == 0:
                return 0

            k = self.failure[k]

    def search(self, text):
        k = 0
        le = len(text)
        matched = [[] for _ in range(le)]
        for i, s in enumerate(text):
            k = self._next(k, s)
            for m in self.match[k]:
                matched[i - len(self.words[m]) + 1].append(m)

        return matched


MOD = 10**9 + 7
n, l, r = map(int, input().split())
aho = AhoCorasick()
a = 1
b = 1
while b <= r:
    if l <= b <= r:
        aho.register(str(b))
    a, b = b, a + b

aho.build()
dp = [1]
for _ in range(n):
    ndp = [0]
    for k, v in enumerate(dp):
        for i in range(10):
            nex = aho._next(k, str(i))
            if aho.match[nex]:
                continue
            if nex >= len(ndp):
                ndp += [0] * (nex - len(ndp) + 1)

            ndp[nex] += v

    dp = [d % MOD for d in ndp]

print((sum(dp) - 1) % MOD)
0