Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
8191 余立涵 11大象喝水 C++ Accepted 0 MS 256 KB 165 2025-06-14 20:55:37

Tests(10/10):


Code:

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