_technoblade_ @ 2022-07-27 16:32:41
#include<bits/stdc++.h>
using namespace std;
int main()
{
long long i,s,n,ans;
cin>>n;
ans=0;
s=1;
for(i=1;i<=n;i++)
{
s*=i;
ans+=s;
}
cout<<ans;
return 0;
}
by wtcqwq @ 2022-07-27 16:34:12
额,你知不知道什么叫高精度
by _technoblade_ @ 2022-07-27 16:35:06
@World_Trade_Center eeeeeeeeeeee,好像不知道
by wtcqwq @ 2022-07-27 16:35:59
题目中很明确:
用高精度计算出……
by wtcqwq @ 2022-07-27 16:36:23
@technoblade 那就没达到做这题的水平,换题吧
by GeorgePeng @ 2022-07-27 16:40:12
用python做
by _technoblade_ @ 2022-07-28 18:35:26
@GeorgePeng
不会
by ttltony @ 2022-08-01 22:59:22
@GeorgePeng 洛谷上大部分都是C党或C++党