-
时间:2016-05-01 13:47:14 星期日
-
题目编号:[2016-05-01][codeforces][667A - Pouring Rain]
-
题目大意:已知瓶中水的上升速度和水的抽取速度,求把瓶内水抽空所需要的时间
-
分析:直接计算
#include<cstdio>
#include<cmath>
using namespace std;
const double pi = acos(-1.0);
int main(){
int d,h,v,e;
scanf("%d%d%d%d",&d,&h,&v,&e);
double s = pi * d * d / 4;
double sv = v / s;
if(sv <= e){
puts("NO");
return 0;
}
double t = h / (sv - e) ;
printf("YES\n%.6lf\n",t);
return 0;
}
时间: 2025-01-16 21:40:28