题解 2811: 救援

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

python 2811: 救援

摘要:参考代码:import math n = int(input()) x1, y1 = 0, 0 pace = 50 time = 0 for i in range(n):     xn, ……

2811: 救援(Python)

摘要:解题思路:注意事项:参考代码:from decimal import * n = int(input()) t0 = 0 while True: try: x,y,num=map(in……

题解 2811: 救援

摘要:解题思路:注意事项:参考代码:import math   # 调用数学模块 t = 0 n = int(input())    #屋顶数 for i in range(n):     a = ……