| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 70481 | sh25_ganzy | 人口增长 | C++ | 通过 | 0 MS | 244 KB | 211 | 2025-10-17 16:23:55 |
#include<bits/stdc++.h> using namespace std; int main(){ double x; int n; cin>>x>>n; for(int i=1;i<=n;i++){ x*=1.001; } cout<<fixed<<setprecision(4)<<x; return 0; }