fork(1) download
  1. #include <iostream>
  2. #include <cmath>
  3. #include <vector>
  4. #include <algorithm>
  5. using namespace std;
  6.  
  7. int main() {
  8. int N;
  9. cin >> N;
  10. int ara[N][2];
  11. for(int i=0; i<N; i++){
  12. for(int j=0; j<2; j++){
  13. cin >> ara[i][j];
  14. }
  15. }
  16.  
  17. vector<double>v;
  18. for(int a=0; a<N; a++){
  19. for(int b=0; b<N; b++){
  20. if(a!=b){
  21. int m, n;
  22. m = abs(ara[a][0] - ara[b][0]);
  23. n = abs(ara[a][1] - ara[b][1]);
  24. double len = sqrt(m*m + n*n);
  25. v.push_back(len);
  26. }
  27. }
  28. }
  29. sort(v.rbegin(), v.rend());
  30. cout << v[0] << endl;
  31.  
  32. return 0;
  33. }
Success #stdin #stdout 0s 5284KB
stdin
5
315 271
-2 -621
-205 -511
-952 482
165 463

stdout
1455.72