| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 55912 | 该账号已封禁 | 人口增长 | C++ | Accepted | 0 MS | 252 KB | 176 | 2024-11-08 16:01:57 |
#include<bits/stdc++.h> using namespace std; double n; int m; int main(){ cin>>n>>m; for(int i=1;i<=m;i++)n=n*1.001; printf("%.4lf\n",n); return 0; }