map
+ split
로 구현한다.math
module을 import한다.list
에 각 값을 append
한 후 min
함수로 최솟값을 출력한다.# boj, 1085 : 직사각형에서 탈출, python3
import sys
import math
x, y, w, h = map(int,sys.stdin.readline().split())
result = []
result.append(w-x)
result.append(h-y)
result.append(math.sqrt((w-x)**2+(h-y)**2))
result.append(math.sqrt((x)**2+(y)**2))
result.append(x)
result.append(y)
print(min(result))
https://www.acmicpc.net/problem/1085