提交时间:2025-11-02 13:38:25
运行 ID: 72643
#include<bits/stdc++.h> using namespace std; int main() { int h,r; cin>>h>>r; double a=3.14159,b=20000; double v=a*r*r*h; int k=b/v; if(b==v*k) { cout<<k; } else { cout<<k+1; } return 0; }