# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
473928 | Ahmed57 | Odašiljači (COCI20_odasiljaci) | C++14 | 18 ms | 352 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
vector<pair<long double,long double>>v(n);
for(int i = 0;i<n;i++){
long double a,b;cin>>a>>b;
v[i]={a,b};
}
long double ma = 0.0;
for(int i = 0;i<n;i++){
long double mi = 1e9;
for(int j =0;j<n;j++){
if(i==j)continue;
long double a = abs(v[i].first-v[j].first)*abs(v[i].first-v[j].first) , b= abs(v[i].second-v[j].second)*abs(v[i].second-v[j].second);
long double r = (sqrt(a+b))/2.0;
mi = min(mi,r);
}
ma = max(ma,mi);
}
cout<<setprecision(9)<<fixed<<ma;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |