| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 73465 | sh25_wuyy | 球弹跳高度的计算 | C++ | 通过 | 0 MS | 240 KB | 398 | 2025-11-09 21:17:38 |
#include <iostream> #include <cmath> using namespace std; int main() { int h; cin>>h; double total_distance=h; double current_height=h; for (int i = 2; i <=10;i++){ current_height /= 2; total_distance+=2*current_height;} double tenth_bounce=current_height/2; cout << total_distance<<endl; cout << tenth_bounce<<endl; return 0; }