結果

問題 No.1618 Convolution?
ユーザー kotatsugamekotatsugame
提出日時 2021-07-28 01:30:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 582 ms
コンパイル使用メモリ 65,344 KB
実行使用メモリ 11,844 KB
最終ジャッジ日時 2024-07-26 12:28:30
合計ジャッジ時間 6,154 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
7,624 KB
testcase_02 AC 79 ms
10,660 KB
testcase_03 AC 96 ms
11,236 KB
testcase_04 AC 102 ms
10,344 KB
testcase_05 AC 10 ms
7,664 KB
testcase_06 AC 131 ms
11,260 KB
testcase_07 AC 138 ms
10,856 KB
testcase_08 AC 103 ms
10,740 KB
testcase_09 AC 154 ms
11,496 KB
testcase_10 AC 110 ms
10,272 KB
testcase_11 AC 160 ms
11,272 KB
testcase_12 AC 172 ms
11,540 KB
testcase_13 AC 167 ms
11,656 KB
testcase_14 AC 164 ms
11,844 KB
testcase_15 AC 165 ms
11,520 KB
testcase_16 AC 165 ms
11,520 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:24:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   24 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
int N;
long sA[4<<17],sB[4<<17];
int A[2<<17];
void f(long S[])
{
	S[0]=0;
	for(int i=1;i<2*N;i++)
	{
		S[i]=S[i-1];
		if(i<=N)
		{
			cin>>A[i];
			S[i]+=A[i];
		}
		else
		{
			S[i]-=(long)(N+1)*A[i-N];
			if(i>N+1)S[i]+=(long)N*A[i-N-1];
		}
	}
}
main()
{
	cin>>N;
	f(sA);
	f(sB);
	long ans=0;
	for(int i=1;i<=2*N;i++)
	{
		cout<<(ans+=sA[i-1]+sB[i-1])<<(i==2*N?"\n":" ");
	}
}
0