11 条题解
- 1
信息
- ID
- 79
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 4
- 标签
- (无)
- 递交数
- 527
- 已通过
- 240
- 上传者
#include<bits/stdc++.h>
using namespace std;
int main(){
float r,h,x,y;
x=20000;
y=3.14;
cin>>h>>r;
cout<<ceil(x/r/r/h/y);
return 0;
}
#include <bits/stdc++.h> using namespace std;
int main() { double h, r, v, d; cin >> h >> r; v = 3.14 * (r * r) * h; d = 20000.0 / v; cout << ceil(d); return 0; }
#include<bits/stdc++.h> using namespace std; int main(){ float r,h,x,y; x=20000; y=3.14; cin>>h>>r; cout<<ceil(x/r/r/h/y); return 0; }
#include<bits/stdc++.h>
using namespace std;
int main(){
float r,h,x,y;
x=20000;
y=3.14;
cin>>h>>r;
cout<<ceil(x/r/r/h/y);
return 0;
}
#include<bits/stdc++.h>
using namespace std;
int main()
{
double a,b,c,p=3.14,d;
cin>>b>>c;
a=c*c*p*b;
d=20000.0/a;
cout<<ceil(d);
return 0;
}
#include<bits/stdc++.h> using namespace std; int main(){ float r,h,x,y; x=20000; y=3.14; cin>>h>>r; cout<<ceil(x/r/r/h/y); return 0; }
#include<bits/stdc++.h> using namespace std; int main(){ float r,h,x,y; x=20000; y=3.14; cin>>h>>r; cout<<ceil(x/r/r/h/y); return 0; }
#include<bits/stdc++.h>
using namespace std;
int main(){
float r,h,x,y;
x=20000;
y=3.14;
cin>>h>>r;
cout<<ceil(x/r/r/h/y);
return 0;
}
#include<bits/stdc++.h>
using namespace std;
int main()
{float r,h,a=20000,pi=3.14;
cin>>h>>r;
cout<<ceil(a/r/r/h/pi);
return 0;}