Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
1099 | 露露老师 | 11大象喝水 | C++ | Wrong Answer | 0 MS | 264 KB | 138 | 2023-07-08 14:45:57 |
#include <iostream> using namespace std; int main(){ int r,h,v; cin>>r>>h; v=3.14*r*r*h; cout<<(int)(20000/v)+1; return 0; }
------Input------
26 10
------Answer-----
3
------Your output-----
1