题解 2811: 救援

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

筛选

救援(数学解题法)

摘要:解题思路:注意事项:注意有多个屋顶,时间需要累加参考代码:#include<stdio.h>#include<math.h>int main(){ int n,x,y,s; float l,t=0; ……

救援——欢迎点评

摘要:解题思路:ceil函数是一个“向上取整”的函数,包含在math函数的头文件中。注意事项:神奇脑回路,地方的一次接着一次的去救的,不是一次性全救完的.........参考代码:#include<stdi……

题解 2811: 救援

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

2811: 救援(Python)

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

C++简单易懂

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>using namespace std;int main() { int n, s; double ……

救援C++ 简单易懂,欢迎点评

摘要:解题思路:注意事项: ceil()为向上取整函数参考代码:#include<bits/stdc++.h>#include<cmath>using namespace std;int main(){  ……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){    int n;    double sum_time = 0.0;    s……