結果

問題 No.1618 Convolution?
ユーザー pengin_2000pengin_2000
提出日時 2021-07-22 21:47:11
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 1,426 ms
コンパイル使用メモリ 28,928 KB
実行使用メモリ 8,076 KB
最終ジャッジ日時 2024-07-17 17:12:58
合計ジャッジ時間 5,167 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 62 ms
7,292 KB
testcase_03 AC 74 ms
7,796 KB
testcase_04 AC 60 ms
6,988 KB
testcase_05 AC 6 ms
6,940 KB
testcase_06 AC 80 ms
7,284 KB
testcase_07 AC 80 ms
7,392 KB
testcase_08 AC 62 ms
6,948 KB
testcase_09 AC 96 ms
8,028 KB
testcase_10 AC 65 ms
6,944 KB
testcase_11 AC 91 ms
7,760 KB
testcase_12 AC 95 ms
8,048 KB
testcase_13 AC 96 ms
8,072 KB
testcase_14 AC 96 ms
8,036 KB
testcase_15 AC 94 ms
8,076 KB
testcase_16 AC 95 ms
7,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
int main()
{
	long long int n;
	scanf("%lld", &n);
	long long int i;
	long long int a[200005], b[200005];
	for (i = 0; i < n; i++)
		scanf("%lld", &a[i]);
	for (i = 0; i < n; i++)
		scanf("%lld", &b[i]);
	long long int c[400005];
	long long int sum = 0, v = 0;
	for (i = 0; i < n; i++)
	{
		c[i] = v;
		sum += a[i];
		v += sum;
	}
	for (i = n; i < 2 * n; i++)
	{
		c[i] = v;
		sum -= a[i - n];
		v += sum;
		v -= n * a[i - n];
	}
	v = 0;
	for (i = 0; i < n; i++)
	{
		c[i] += v;
		sum += b[i];
		v += sum;
	}
	for (i = n; i < 2 * n; i++)
	{
		c[i] += v;
		sum -= b[i - n];
		v += sum;
		v -= n * b[i - n];
	}
	for (i = 0; i < 2 * n - 1; i++)
		printf("%lld ", c[i]);
	printf("%lld\n", c[2 * n - 1]);
	return 0;
}
0