Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
102046 王煜鑫 11大象喝水 C++ Accepted 1 MS 272 KB 159 2024-12-21 11:36:48

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int h,r; double a; cin>>h>>r; a=3.14*r*r*h; cout<<int(20000/a)+1; }