| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144313 | 刘思雨 | 11大象喝水 | Python3 | Wrong Answer | 30 MS | 3748 KB | 203 | 2026-01-21 19:01:26 |
import math print("请输入桶的高度和半径") h,r=map(int,input().split()) pi=3.14 v=pi*r*r*h n=20000/v if 20000%v>1e-9: count=math.ceil(20000/v) print(count) else: print(n)
------Input------
8 29
------Answer-----
1
------Your output-----