[Python] 2098. 외판원 순회 n = int(input()) # 도시의 수 n cost = [list(map(int, input().split())) for _ in range(n)] # 비용 행렬 dp = [[1e9 for _ in range(1 Algorithm/Baekjoon 2022.01.12