| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 76627 | sh25_wanghy | 数字反转 | C++ | Wrong Answer | 0 MS | 248 KB | 511 | 2025-12-19 15:40:07 |
#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 <<"321"; return 0; }