시간 제한메모리 제한제출정답맞힌 사람정답 비율
10 초 1024 MB156452218.966%

문제

Last month, Sichuan province secured funding to establish the Great Panda National Park, a natural preserve for a population of more than 1 800 giant pandas. The park will be surrounded by a polygonal fence. In order for researchers to track the pandas, wireless receivers will be placed at each vertex of the enclosing polygon and each animal will be outfitted with a wireless transmitter. Each wireless receiver will cover a circular area centered at the location of the receiver, and all receivers will have the same range. Naturally, receivers with smaller range are cheaper, so your goal is to determine the smallest possible range that suffices to cover the entire park.

As an example, Figure G.1 shows the park described by the first sample input. Notice that a wireless range of 35 does not suffice (a), while the optimal range of 50 covers the entire park (b).

Figure G.1: Illustration of Sample Input 1.

입력

The first line of the input contains an integer n (3 ≤ n ≤ 2 000) specifying the number of vertices of the polygon bounding the park. This is followed by n lines, each containing two integers x and y (|x|, |y| ≤ 104) that give the coordinates (x, y) of the vertices of the polygon in counter-clockwise order. The polygon is simple; that is, its vertices are distinct and no two edges of the polygon intersect or touch, except that consecutive edges touch at their common vertex.

출력

Display the minimum wireless range that suffices to cover the park, with an absolute or relative error of at most 10−6.

예제 입력 1

5
0 0
170 0
140 30
60 30
0 70

예제 출력 1

50

예제 입력 2

5
0 0
170 0
140 30
60 30
0 100

예제 출력 2

51.538820320

예제 입력 3

5
0 0
1 2
1 5
0 2
0 1

예제 출력 3

1.581138830