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

용상윤·2021년 3월 23일
0
post-custom-banner

문제

https://www.acmicpc.net/problem/1085


접근

굳이 삼항연산자를 쓴 난 바보다..


코드

📌 python

import sys
input = sys.stdin.readline

x, y, w, h = map(int, input().split())

a = h-y if h-y < y else y
b = w-x if w-x < x else x

result = a if a<b else b

print(result)

#print( min([x, y, w-x, h-y]) )
        
profile
달리는 중!

0개의 댓글