[Python] BOJ 1085번. 직사각형에서 탈출 작성일 2020-05-13 | In Algorithm | 1085번. 직사각형에서 탈출 문제 링크 https://www.acmicpc.net/problem/1085 풀이 코드 12345# 1085번. 직사각형에서 탈출 x, y, w, h = map(int, input().split()) print(min(w-x, x, h-y, y)) 비고