| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 132324 | 胡海峰老师 | 13投资金额 | C++ | Accepted | 2 MS | 272 KB | 230 | 2025-10-07 22:23:05 |
#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 = int(tot *1.2); } cout << (int)tot; return 0; }