Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 1차원 DP
- 2차원 dp
- 99클럽
- @Builder
- @GeneratedValue
- @GenericGenerator
- @NoargsConstructor
- @Transactional
- Actions
- Amazon EFS
- amazon fsx
- Android Studio
- ANSI SQL
- ApplicationEvent
- assertThat
- async/await
- AVG
- AWS
- Azure
- bind
- builder
- button
- c++
- c++ builder
- c03
- Callback
- case when
- CCW
- chat GPT
- CICD
Archives
- Today
- Total
기록
백준_1085_직사각형에서 탈출 본문
문제
풀이
직사각형 내부의 임의의 점 (x, y)에서 직사각형 경계까지의 최소거리는 아래 네가지 값 중 가장 작은 값이다.
코드
x, y, w, h = map(int, input().split())
print(min(x, y, (w-x), (h-y)))
'코딩테스트 > python' 카테고리의 다른 글
백준_2448_별 찍기 - 11 (0) | 2020.12.30 |
---|---|
백준_17070_파이프 옮기기 1 (0) | 2020.12.30 |
백준_1259_팰린드롬수 (0) | 2020.12.28 |
백준_9935_문자열 폭발 (0) | 2020.09.02 |
백준_17144_미세먼지 안녕! (0) | 2020.08.29 |
Comments