| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 126361 | 陶婉晴 | 13投资金额 | C++ | Wrong Answer | 1 MS | 260 KB | 147 | 2025-07-18 11:03:53 |
#include<bits/stdc++.h> using namespace std; int main(){ double a=100000; for(int i=1;i<=20;i++){ a*=1.2; } cout<<a; return 0; }
------Input------
92
------Answer-----
3464
------Your output-----
3.83376e+06