# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
473800 | Ahmed_Solyman | Odašiljači (COCI20_odasiljaci) | C++14 | 7 ms | 204 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
double dist(double x1,double y1,double x2,double y2){
return sqrt(pow(abs(x1-x2),2)+pow(abs(y1-y2),2));
}
int main()
{
ll n;cin>>n;
vector<pair<double,double>>arr(n);
for(auto &i:arr)cin>>i.first>>i.second;
double ans=0;
for(ll i=0;i<n;i++){
double mn=4e18;
for(ll j=0;j<n;j++){
if(i==j)continue;
mn=min(mn,dist(arr[i].first,arr[i].second,arr[j].first,arr[j].second)/2);
}
ans=max(ans,mn);
}
cout<<fixed<<setprecision(7)<<ans;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |