| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144363 | 贺洁 | 11大象喝水 | Python3 | Wrong Answer | 30 MS | 3752 KB | 128 | 2026-01-21 20:25:45 |
h,r = map(int,input().split()) v = 3.14*h*r**2 s = 20000//v if 20000%v ==0: print(s) else: s = s+1 print(s)
------Input------
8 29
------Answer-----
1
------Your output-----
1.0