본문 바로가기

알고리즘/백준 ~ 단계별 풀어보기

백준 1085번 "직사각형에서 탈출"

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))