2019-04-14 17:37发布 生成海报
5 0 1 2 0 -1 0 3 3 0 -3
4.24
from math import sqrt n = int(input()) l = [] for i in range(n): num = [int(i) for i in input().split()] l.append(sqrt(num[0] ** 2 + num[1] ** 2)) print('{:.2f}'.format(max(l)))