Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
108353 | 常钰杰 | 11大象喝水 | C++ | Wrong Answer | 1 MS | 268 KB | 254 | 2025-01-20 10:12:20 |
#include <iostream> #include <cstdio> using namespace std; int main() { int h,r; float v,t; cin>>h>>r; v=(3.14*r*r*h)/1000; t=20/v+1; cout<<t; return 0; }
------Input------
8 29
------Answer-----
1
------Your output-----
1.9467