[Codetree] 이동경로상에 있는 모든 숫자 더하기 Python
·
🔻PS/Codetree
https://www.codetree.ai/missions/5/problems/add-all-the-numbers-on-the-path/description 코드트리 | 코딩테스트 준비를 위한 알고리즘 정석국가대표가 만든 코딩 공부의 가이드북 코딩 왕초보부터 꿈의 직장 코테 합격까지, 국가대표가 엄선한 커리큘럼으로 준비해보세요.www.codetree.ai import sys input = sys.stdin.readline n, t = map(int, input().split(" ")) cmd = list(input().rstrip()) graph = [] for _ in range(n): temp = list(map(int, input().rstrip().split(" "))) graph.append(t..
_니지
'코딩트리조별과제' 태그의 글 목록