Notice
Recent Posts
Recent Comments
Link
DevKim
[Python] 백준 #1541 잃어버린 괄호 본문
728x90
k=input()
ans=0
k=k.split('-')
for i in k[0].split('+'):
ans+=int(i)
for i in k[1:]:
p=0
for j in i.split('+'):
p+=int(j)
ans-=p
print(ans)
728x90
'알고리즘 PS' 카테고리의 다른 글
[Python] 백준 #1080 행렬 (0) | 2020.12.19 |
---|---|
[Python] 백준 #1946 신입 사원 (0) | 2020.12.19 |
[Python] 백준 #2217 로프 (0) | 2020.12.19 |
[Python] 백준 #1931 회의실배정 (0) | 2020.12.19 |
[Python] 백준 #11047 동전 0 (0) | 2020.12.19 |
Comments