Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1338 李翼 11大象喝水 C++ Accepted 0 MS 268 KB 144 2023-08-25 11:42:46

Tests(10/10):


Code:

#include<iostream> using namespace std; int main() { double h,r,v=0; cin>>h>>r; v=h*(3.14*r*r); cout<<(int)(20000/v)+1; return 0; }