CF333E.Summer Earnings

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Many schoolchildren look for a job for the summer, and one day, when Gerald was still a schoolboy, he also decided to work in the summer. But as Gerald was quite an unusual schoolboy, he found quite unusual work. A certain Company agreed to pay him a certain sum of money if he draws them three identical circles on a plane. The circles must not interfere with each other (but they may touch each other). He can choose the centers of the circles only from the nn options granted by the Company. He is free to choose the radius of the circles himself (all three radiuses must be equal), but please note that the larger the radius is, the more he gets paid.

Help Gerald earn as much as possible.

输入格式

The first line contains a single integer nn — the number of centers ( 3<=n<=30003<=n<=3000 ). The following nn lines each contain two integers xi,yix_{i},y_{i} ( 104<=xi,yi<=104-10^{4}<=x_{i},y_{i}<=10^{4} ) — the coordinates of potential circle centers, provided by the Company.

All given points are distinct.

输出格式

Print a single real number — maximum possible radius of circles. The answer will be accepted if its relative or absolute error doesn't exceed 10610^{-6} .

输入输出样例

  • 输入#1

    3
    0 1
    1 0
    1 1
    

    输出#1

    0.50000000000000000000
    
  • 输入#2

    7
    2 -3
    -2 -3
    3 0
    -3 -1
    1 -2
    2 -2
    -1 0
    

    输出#2

    1.58113883008418980000
    
首页