結果

問題 No.1618 Convolution?
ユーザー 沙耶花沙耶花
提出日時 2021-07-22 21:36:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 437 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 4,356 ms
コンパイル使用メモリ 263,796 KB
実行使用メモリ 29,268 KB
最終ジャッジ日時 2024-07-17 16:46:53
合計ジャッジ時間 13,897 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 389 ms
24,356 KB
testcase_03 AC 411 ms
27,596 KB
testcase_04 AC 234 ms
19,348 KB
testcase_05 AC 23 ms
5,376 KB
testcase_06 AC 412 ms
25,308 KB
testcase_07 AC 411 ms
25,544 KB
testcase_08 AC 237 ms
19,392 KB
testcase_09 AC 434 ms
29,252 KB
testcase_10 AC 380 ms
20,140 KB
testcase_11 AC 427 ms
28,024 KB
testcase_12 AC 435 ms
29,172 KB
testcase_13 AC 435 ms
29,268 KB
testcase_14 AC 437 ms
29,256 KB
testcase_15 AC 436 ms
29,256 KB
testcase_16 AC 436 ms
29,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001

vector<long long> c;

void go(vector<long long> a){
	vector<long long> b(a.size());
	rep(i,b.size())b[i] = i;
	
	auto ret = convolution_ll(a,b);
	
	rep(i,ret.size())c[i] += ret[i];
	
}

int main(){
	
	int N;
	cin>>N;
	
	vector<long long> a(N+1),b(N+1);
	rep(i,N){
		scanf("%lld",&a[i+1]);
	}
	rep(i,N){
		scanf("%lld",&b[i+1]);
	}
	c.resize(N*2+1,0LL);
	
	go(a);
	go(b);
	
	for(int i=1;i<=2*N;i++){
		if(i!=1)printf(" ");
		printf("%lld",c[i]);
	}

	return 0;
}
0