Run ID:1938

提交时间:2023-12-02 17:20:26

# include<iostream> using namespace std; int main() { float h,r,tong; cin>>h>>r; tong=r*r*h/1000; int n = tong/20.0; if(tong - n*20.0 > 0) { cout<<n+1; } else { cout<<n; } return 0; }