Given N points, find the diameter of the smallest enclosing circle, printed to two decimals.
You are given NNN points on a 2D plane. Write a program that finds the diameter of the smallest circle that contains all of the points.
A point that lies on the circumference of the circle counts as contained in the circle.
The first line contains the number of points NNN (2≤N≤3002 \le N \le 3002≤N≤300).
Each of the next NNN lines contains the coordinates xxx and yyy of one point, separated by a space (0≤x,y≤1 0000 \le x, y \le 1\,0000≤x,y≤1000).
Print the minimum diameter of a circle that contains all the points, rounded to two decimal places.