Run ID:8193
提交时间:2025-06-14 20:57:25
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a,s,d; cin>>a>>s; d=a*s*s*3.14; if(20000/d==0){ cout<<20000/d; } else{ d=1+20000/d; } cout<<d; return 0; }