题解 | 求小球落地5次后所经历的路程和第5次反弹的高度
求小球落地5次后所经历的路程和第5次反弹的高度
https://www.nowcoder.com/practice/2f6f9339d151410583459847ecc98446
h = float(input()) s = 0 now_h = h for i in range(5): if now_h==h: s+=h now_h/=2 else: s += 2 * now_h now_h/=2 print(f'{s}\n{now_h}')