Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
108701 | 李明秦 | 13投资金额 | C++ | Wrong Answer | 1 MS | 272 KB | 362 | 2025-01-21 13:38:57 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int M; cin>>M; for(int i=1;i<=M;i++){ M=M*0.2+M; } cout<<M; return 0; }
------Input------
92
------Answer-----
3464
------Your output-----
-2147483648