728x90
반응형
그리디 알고리즘 문제이다. max(B-A, C-B)-1가 핵심이다.
while 1:
try:
A, B, C = map(int, input().split())
print(max(B-A, C-B)-1)
except:
break
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 11320번 삼각 무늬 - 1(python) (0) | 2021.03.02 |
---|---|
백준 알고리즘 11134번 쿠키애호가(python) (0) | 2021.03.02 |
백준 알고리즘 11109번 괴짜 교수(python) (0) | 2021.03.02 |
백준 알고리즘 11024번 더하기 4(python) (0) | 2021.03.02 |
백준 알고리즘 11023번 더하기 3(python) (0) | 2021.03.02 |