Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
150388 赵奕杰 12自由落体 C++ Accepted 1 MS 260 KB 149 2026-03-27 20:09:37

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; double n=100; int main(){ for(int a=1;a<=10;a++){ n=n/2; } printf("%.6lf",n); return 0; }