题解 | 求小球落地5次后所经历的路程和第5次反弹的高度
a=int(input()) str1=[] for i in range(6): i=2**i b=a/i str1.append(b) result=str1[0]+2*(str1[1]+str1[2]+str1[3]+str1[4]) print('{:.6f}'.format(result)) print('{:.6f}'.format(b))
a=int(input()) str1=[] for i in range(6): i=2**i b=a/i str1.append(b) result=str1[0]+2*(str1[1]+str1[2]+str1[3]+str1[4]) print('{:.6f}'.format(result)) print('{:.6f}'.format(b))
相关推荐