省惑


私信TA

用户名:dotcpp0616633

访问量:4814

签 名:

等  级
排  名 991
经  验 3369
参赛次数 0
文章发表 49
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

import math   # 调用数学模块
t = 0
n = int(input())    #屋顶数
for i in range(n):
    a = list(map(int,input().split()))   #屋顶的坐标值和屋顶上的人
    s = (a[0] ** 2 + a[1] ** 2) ** 0.5   #屋顶到大本营距离
    t += 2*s / 50 + a[2] + a[2] / 2    #营救需要的时间
print(math.ceil(t))  # 向上取整输出


 

0.0分

2 人评分

  评论区

  • «
  • »