https://www.acmicpc.net/problem/5543
price = []
for i in range(5):
price.append(int(input()))
a = min(price[:3])
b = min(price[3:])
print(a + b - 50)
'알고리즘 > 백준' 카테고리의 다른 글
[Python] 백준 2523번 - 별 찍기 - 13 (0) | 2020.06.09 |
---|---|
[Python] 백준 10817번 - 세 수 (0) | 2020.06.09 |
[Python] 백준 10039번 - 평균 점수 (0) | 2020.06.09 |
[Python] 백준 1110번 - 더하기 사이클 (0) | 2020.06.09 |
[Python] 백준 10951번 - A+B - 4 (0) | 2020.06.09 |
댓글