ARC#004 A - 2点間距離の最大値 ( The longest distance )
2点間距離の最大値 ( The longest distance )
問題サイズが小さいので全ての組合わせを試せば良い。
import math N = input() P = [map(float,raw_input().split())for x in range(N)] print "%.10f"%max(math.hypot(p[0]-q[0],p[1]-q[1]) for p in P for q in P)