Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144295 陈怡笑 11大象喝水 Python3 Wrong Answer 29 MS 3736 KB 171 2026-01-21 13:42:49

Tests(0/10):


Code:

h,r=map(int,input("小圆桶的深h和底面半径r分别为:").split()) v=h*3.14*r**2 if 20%v==0: x=20000//v print(x) else: x=20000//v+1 print(x)


Run Info:

------Input------
8 29
------Answer-----
1
------Your output-----