| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 23295 | Flora | 大象喝水 | C++ | Wrong Answer | 0 MS | 252 KB | 217 | 2023-07-23 20:57:25 |
#include<iostream> using namespace std; int main() { int a,b; cin>>a>>b; if(200%a*b==0){ cout<<200/(a*b*b*3.14); } else{ cout<<200/(a*b*b*3.14)+1; } return 0; }