Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
128944 胥博雯 11大象喝水 C++ Accepted 1 MS 272 KB 171 2025-08-21 12:07:41

Tests(10/10):


Code:

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