Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144296 陈怡笑 11大象喝水 Python3 Wrong Answer 30 MS 3732 KB 174 2026-01-21 13:45:52

Tests(0/10):


Code:

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


Run Info:

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