#abc151f. [abc151_f]Enclose All
[abc151_f]Enclose All
Problem Statement
Given are points in a two-dimensional plane.
Find the minimum radius of a circle such that all the points are inside or on it.
Constraints
- The given points are all different.
- The values in input are all integers.
Input
Input is given from Standard Input in the following format:
Output
Print the minimum radius of a circle such that all the points are inside or on it.
Your output will be considered correct if the absolute or relative error from our answer is at most .
Sample Input 1
2
0 0
1 0
Sample Output 1
0.500000000000000000
Both points are contained in the circle centered at with a radius of .
Sample Input 2
3
0 0
0 1
1 0
Sample Output 2
0.707106781186497524
Sample Input 3
10
10 9
5 9
2 0
0 0
2 7
3 3
2 5
10 0
3 7
1 9
Sample Output 3
6.726812023536805158
If the absolute or relative error from our answer is at most , the output will be considered correct.