Posts [알고리즘] 백준 1085 - 직사각형에서 탈출
Post
Cancel

[알고리즘] 백준 1085 - 직사각형에서 탈출


문제

1085 - 직사각형에서 탈출


접근

상하좌우 가장 가까운 곳을 찾으면 된다.


코드

  • 파이썬 코드
1
2
3
x, y, w, h = map(int, input().split(' '))

print(min(x, w-x, y, h-y))


This post is licensed under CC BY 4.0 by the author.