結果

問題 No.1102 Remnants
ユーザー vjudge1vjudge1
提出日時 2024-11-17 10:11:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 16 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 45,568 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-17 10:11:44
合計ジャッジ時間 1,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 9 ms
6,816 KB
testcase_06 AC 4 ms
6,816 KB
testcase_07 AC 16 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 3 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 8 ms
6,820 KB
testcase_15 AC 6 ms
6,820 KB
testcase_16 AC 13 ms
6,820 KB
testcase_17 AC 12 ms
6,816 KB
testcase_18 AC 12 ms
6,820 KB
testcase_19 AC 6 ms
6,820 KB
testcase_20 AC 3 ms
6,816 KB
testcase_21 AC 9 ms
6,816 KB
testcase_22 AC 11 ms
6,816 KB
testcase_23 AC 9 ms
6,820 KB
testcase_24 AC 7 ms
6,816 KB
testcase_25 AC 13 ms
6,820 KB
testcase_26 AC 3 ms
6,820 KB
testcase_27 AC 5 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<algorithm>
using namespace std;
const int N=2e5+5;
const int mod=1e9+7;
int n,m,a[N],f[N],inv[N];
int read()
{
	int res,f=1;
	char ch;
	while((ch=getchar())<'0'||ch>'9')
	if(ch=='-')
	f=-1;
	res=ch^48;
	while((ch=getchar())>='0'&&ch<='9')
	res=(res<<1)+(res<<3)+(ch^48);
	return res*f;
}
int main()
{
//	freopen("ex_a4.in","r",stdin);
	int i,ans=0;
	n=read();m=read();
	for(i=1;i<=n;i++)
	a[i]=read();
	f[1]=1;inv[1]=1;
	for(i=2;i<=n;i++)
	{
		inv[i]=1ll*(mod-mod/i)*inv[mod%i]%mod;
		f[i]=1ll*f[i-1]*(m+i-1)%mod*inv[i-1]%mod;
	}
	for(i=1;i<=n;i++)
	ans=(ans+1ll*a[i]*f[i]%mod*f[n+1-i]%mod)%mod;
	printf("%d",ans);
	return 0;
}
0