結果

問題 No.754 畳み込みの和
ユーザー kotatsugamekotatsugame
提出日時 2018-12-03 05:12:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 272 bytes
コンパイル時間 550 ms
コンパイル使用メモリ 64,248 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 05:33:03
合計ジャッジ時間 1,454 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    4 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
long ans,mod=1e9+7,a[1<<17],b[1<<17],n;
main()
{
	cin>>n;
	for(int i=0;i<=n;i++)cin>>a[i];
	for(int i=0;i<=n;i++)cin>>b[i];
	for(int i=1;i<=n;i++)a[i]+=a[i-1];
	for(int i=0;i<=n;i++)ans=(ans+b[i]*a[n-i]%mod)%mod;
	cout<<ans<<endl;
}
0