보안을 그리다, 훈이

[Baekjoon/Python3] 2965번 캥거루 세마리 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 2965번 캥거루 세마리

HooNeee 2020. 12. 4. 17:15

[Baekjoon/Python3] 2965번 캥거루 세마리

 

www.acmicpc.net/problem/2965

 

2965번: 캥거루 세마리

첫째 줄에 세 캥거루의 초기 위치 A, B, C가 주어진다. (0 < A < B < C < 100)

www.acmicpc.net

 

a, b, c = map(int, input().split())
m = max((b - a), (c - b))
print(m - 1)
Comments