1541번: 잃어버린 괄호 (acmicpc.net) 1541번: 잃어버린 괄호 첫째 줄에 식이 주어진다. 식은 ‘0’~‘9’, ‘+’, 그리고 ‘-’만으로 이루어져 있고, 가장 처음과 마지막 문자는 숫자이다. 그리고 연속해서 두 개 이상의 연산자가 나타나지 않고, 5자리보다 www.acmicpc.net nums = input().split('-') temp = 0 for i in range(len(nums)): if '+' in nums[i]: s = map(int, nums[i].split('+')) for j in s: temp = temp + j nums[i] = temp else: nums[i] = int(nums[i]) temp = 0 result = nums[0] for i in range(1..