| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 148763 | 杨润东 | 12自由落体 | C++ | Accepted | 0 MS | 264 KB | 253 | 2026-02-28 19:12:53 |
#include <iostream> #include <iomanip> using namespace std; int main() { double height = 100.0; for (int i = 0; i < 10; i++) { height = height / 2.0; } cout << fixed << setprecision(6) << height << endl; return 0; }