| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 72682 | sh25_zhuwy | 人口增长 | C++ | 通过 | 0 MS | 248 KB | 190 | 2025-11-02 13:48:03 |
#include<bits/stdc++.h> using namespace std; int main() { double x; int n; cin>>x>>n; for(int i=0;i<n;i++) { x=x*1.001; } cout<<fixed<<setprecision(4)<<x; return 0; }