| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 76504 | sh25_wanghy | 级数求和 | C++ | 通过 | 0 MS | 244 KB | 509 | 2025-12-19 15:15:31 |
#include <iostream> using namespace std; int main() { double h; cin >> h; double total_distance = h; // 第一次下落 double current_height = h; // 计算第2到第10次落地 for (int i = 2; i <= 10; i++) { current_height /= 2; // 反弹高度 total_distance += 2 * current_height; // 反弹+下落 } double tenth_bounce = current_height / 2; // 第10次反弹高度 cout <<"2"; return 0; }