백준(1085) - 직사각형에서 탈출 Python
백준(1085) - 직사각형에서 탈출
문제풀이: 구현, 파이썬
해결방법
- 입력받은 좌표로 직사각형을 그려보면 아주 쉽게 해결할 수 있다.
import sys
input = sys.stdin.readline
x, y, w, h = map(int, input().split())
print(min(x,y,(w-x),(h-y)))
문제풀이: 구현, 파이썬
import sys
input = sys.stdin.readline
x, y, w, h = map(int, input().split())
print(min(x,y,(w-x),(h-y)))
댓글남기기