Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
120146 | 白碣琨 | 12自由落体 | C++ | Accepted | 0 MS | 260 KB | 253 | 2025-05-24 11:14:25 |
#include <iostream> #include <iomanip> using namespace std; int main() { double height = 100.0; for (int i = 1; i <= 9; i++) { height /= 2; } cout << fixed << setprecision(6) << height / 2 << endl; return 0; }