Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
2044 | 邓小龙 | 11大象喝水 | C++ | Wrong Answer | 0 MS | 264 KB | 188 | 2023-12-04 15:52:58 |
#include<iostream> #include<cstdio> using namespace std; int main() { int h,r; double v; cin>>h>>r; v=3.14*r*r*h/1000; printf("%.lf",20/v+1); return 0; }
------Input------
15 15
------Answer-----
2
------Your output-----
3