| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 78221 | sh25_shengmy | 人口增长 | C++ | 通过 | 0 MS | 256 KB | 211 | 2025-12-26 15:29:12 |
#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; }