| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144301 | 谢尚昊 | 11大象喝水 | Python3 | Wrong Answer | 31 MS | 3736 KB | 125 | 2026-01-21 15:11:40 |
print("请输入深度和半径:") h,r=map(int,input().split()) p=3.14 v=p*r*r*h s=20000 m=int((s+v-1)//v) print(m)
------Input------
8 29
------Answer-----
1
------Your output-----