시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB1691018460.432%

문제

You are surrounded by Imperial warships and must land on a planet to escape. Your best chance is to find a route to the closest planet. Unfortunately the navigation system has been damaged. Your job is to write a program that will find the planet that is closest to your current location. Recall that the distance between two points (x1, y1) and (x2, y2) is given by the formula

dist = ( (x1 - x2)2 + (y1 - y2)2 )1/2

입력

A positive integer, n, followed by n pairs of integers (x,y). Each pair will be on a separate line and there will be a space between x and y. The first pair will be the coordinates of your current location and all subsequent pairs will be the coordinates of the planets you can escape to.

출력

Coordinates of your current location, coordinates of a closest planet, and the distance to that planet formatted to two decimal places. The distance must be accurate to two decimal places.

예제 입력 1

7
5 4
-80 9
100 89
67 -40
10 20
15 -5
34 0

예제 출력 1

5 4
15 -5
13.45