Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144324 桂依然 11大象喝水 Python3 Accepted 33 MS 3768 KB 127 2026-01-21 19:19:33

Tests(10/10):


Code:

h,r=map(int,input().split()) v=3.14*r**2*h s=20000//v if 20000%v==0: print(int(s)) else: s=int(s)+1 print(s)