Python
import sys
x, y, w, h = map(int , sys.stdin.readline().split())
tempList = list()
if x < w - x:
tempList.append(x)
else:
tempList.append(w - x)
if y < h - y :
tempList.append(y)
else:
tempList.append(h-y)
print(min(tempList))
'알고리즘 > 백준 ~ 단계별 풀어보기' 카테고리의 다른 글
백준 15649번 "N과 M" (0) | 2022.08.15 |
---|---|
백준 3009 "네 번째 점" (0) | 2022.08.13 |
백준 11478번 "서로 다른 부분 문자열의 개수" (0) | 2022.08.13 |
백준 1269 "대칭 차집합" (0) | 2022.08.13 |
백준 1764 "듣보잡" (0) | 2022.08.04 |