Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
121500 邹金行 13投资金额 C++ Wrong Answer 1 MS 276 KB 151 2025-06-07 15:16:11

Tests(0/10):


Code:

#include<iostream> using namespace std; int main(){ double h; cin>>h; for(int i=1;i<=20;i++){ h=h*0.2+h; } cout<<int (h); return 0; }


Run Info:

------Input------
92
------Answer-----
3464
------Your output-----
3527