| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 132323 | 胡海峰老师 | 13投资金额 | C++ | Wrong Answer | 1 MS | 268 KB | 225 | 2025-10-07 22:21:02 |
#include <iostream> //designed by hu 2025-10 using namespace std; int main(){ int m; cin>>m; float tot=0.0; tot = m; for(int i=1;i<=20;i++) { tot = tot *1.2; } cout << (int)tot; return 0; }
------Input------
92
------Answer-----
3464
------Your output-----
3527