| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 121494 | 邹金行 | 13投资金额 | C++ | Wrong Answer | 0 MS | 264 KB | 144 | 2025-06-07 15:14:35 |
#include<iostream> using namespace std; int main(){ double h=10; for(int i=1;i<=20;i++){ h=h*0.2+h; } cout<<int (h); return 0; }
------Input------
92
------Answer-----
3464
------Your output-----
383