728x90
반응형
문제 링크
https://www.acmicpc.net/problem/11034
풀이
while True:
try:
a,b,c = map(int, input().split())
print(max(b-a,c-b)-1)
except:
break
- max() 함수를 사용하는 것이 핵심이다.
728x90
반응형
'알고리즘 정복하기! > 백준 문제풀이' 카테고리의 다른 글
백준 2577번 Python / Math (0) | 2022.02.08 |
---|---|
백준 15720번 Python / Greedy (0) | 2022.01.30 |
백준 2810번 Python / Greedy (0) | 2022.01.30 |
백준 1052번 Python / Greedy (0) | 2022.01.27 |
백준 2178번 Python / BFS (0) | 2022.01.25 |
댓글