Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
23299 | Flora | 大象喝水 | C++ | Wrong Answer | 0 MS | 248 KB | 245 | 2023-07-23 21:17:40 |
#include<iostream> #include<iomanip> using namespace std; int main() { int a,b; cin>>a>>b; if(20000%a*b*b*3.14==0){ cout<<20000/(a*b*b*3.); } else{ cout<<20000/(a*b*b*3.)+1; } return 0; }