Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
5364 | 孙文谦 | 大象喝水 | C++ | Wrong Answer | 0 | 0 MS | 256 KB | 170 | 2020-07-31 19:27:05 |
#include<bits/stdc++.h> using namespace std; int main(){ double h,r,ti,ans; cin>>h>>r; ti=h*r*r*3.14159/1000; ans=20/ti+1; printf("%.0lf",ans); return 0; }