오답! #해당 수를 해당 문자에 매칭시키고 후위 연산을 진행해준다. n = int(input()) s = list(input()) cnt = 1 stack = [] for _ in range(n): int(input()) for i in range(len(s)): if s[i].isalpha(): s[i] = str(cnt) cnt += 1 for x in s: if x.isdigit(): stack.append(float(x)) else: if x == "+": b = stack.pop() a = stack.pop() stack.append(a+b) elif x == "-": b = stack.pop() a = stack.pop() stack.append(a-b) elif x == "*": b = st..