from collections import deque class Node: def __init__(self): self.child = {} self.failure = None self.valid = 0 def set_child(self, s): self.child[s] = Node() def get_child(self, s): if s not in self.child: return None return self.child[s] class AhoCorasick: def __init__(self): self.root = Node() def add(self, pattern): ptr = self.root for s in pattern: if ptr.get_child(s) is None: ptr.set_child(s) ptr = ptr.get_child(s) ptr.valid += 1 def build_failure(self): queue = deque() for char in self.root.child: ptrch = self.root.child[char] ptrch.failure = self.root queue.append(ptrch) while queue: ptr = queue.popleft() ptr.valid += ptr.failure.valid for char in ptr.child: ptrch = ptr.child[char] queue.append(ptrch) f = ptr.failure while f is not None and f.get_child(char) is None: f = f.failure if f is None: ptrch.failure = self.root else: ptrch.failure = f.get_child(char) def match_cnt(self, text): ptr = self.root res = 0 for char in text: while ptr is not None and ptr.get_child(char) is None: ptr = ptr.failure if ptr is None: ptr = self.root else: ptr = ptr.get_child(char) res += ptr.valid return res text = input() m = int(input()) c = [input() for i in range(m)] ac = AhoCorasick() for string in c: ac.add(string) ac.build_failure() print(ac.match_cnt(text))