자꾸 시간초과나는데 왜 나는지 모루게따.. 알려주실분 댓글 달아주시면 감사하겠슴니다(꾸벅) idx1: color가 반환된 index idx2: nick_name이 반환된 역방향 index : n-1-index import sys input = sys.stdin.readline from collections import defaultdict class Node: def __init__(self): self.child = defaultdict(Node) self.word = False class Trie: def __init__(self): self.root = Node() def insert(self,word): node = self.root for char in word: node = node.child..