#include <bits/stdc++.h>
using namespace std;
#define debug(a) cerr << #a << " = " << (a) << nl;
#define ll long long
#define nl '\n'
void jAVA()
{
int n;
cin >> n;
vector<int> a(n), b(n);
for (int i = 0; i < n; i++)
cin >> a[i] >> b[i];
double ans = 1e9;
for(int i=0;i<n;++i) {
for(int j=0;j<n;++j){
double x = (a[i] + a[j]) / 2.0l;
double y = (b[i] + b[j]) / 2.0l;
double l = 0, r = 1e6;
int t = 100;
while(t--){
double mid = (l + r) / 2;
bool ok = true;
for(int i=0; i<n; i++) ok &= ((x-a[i])*(x-a[i])+(y-b[i])*(y-b[i])<=mid*mid);
if(ok) r = mid;
else l = mid;
}
ans = min(ans, l);
}
}
cout << fixed << setprecision(10) << ans << nl;
}
int32_t main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr); cout.tie(nullptr);
int t = 1, cs = 0;
// cin >> t;
while (t--){
// cout << "Case " << ++cs << ": ";
jAVA();
}
return 0;
}