Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
148749 吴昊 13投资金额 C++ Accepted 1 MS 272 KB 177 2026-02-28 19:02:49

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a=0; cin>>a; for(int i=1;i<=20;i++){ a+=a*0.2; } cout<<a; return 0; }