Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
23296 | Flora | 大象喝水 | C++ | Wrong Answer | 1 MS | 244 KB | 230 | 2023-07-23 21:00:41 |
#include<iostream> 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.14); } else{ cout<<20000/(a*b*b*3.14)+1; } return 0; }