結果

問題 No.1618 Convolution?
ユーザー monnumonnu
提出日時 2021-07-23 19:07:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 510 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 3,853 ms
コンパイル使用メモリ 228,964 KB
実行使用メモリ 25,712 KB
最終ジャッジ日時 2024-07-18 14:14:02
合計ジャッジ時間 14,295 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 402 ms
21,016 KB
testcase_03 AC 428 ms
23,964 KB
testcase_04 AC 275 ms
16,992 KB
testcase_05 AC 26 ms
5,376 KB
testcase_06 AC 462 ms
21,980 KB
testcase_07 AC 462 ms
22,148 KB
testcase_08 AC 276 ms
17,208 KB
testcase_09 AC 496 ms
25,400 KB
testcase_10 AC 430 ms
19,028 KB
testcase_11 AC 486 ms
24,192 KB
testcase_12 AC 507 ms
25,712 KB
testcase_13 AC 509 ms
25,564 KB
testcase_14 AC 510 ms
25,660 KB
testcase_15 AC 506 ms
25,688 KB
testcase_16 AC 502 ms
25,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll=long long;
using Graph=vector<vector<pair<int,int>>>;
#define MAX 100
#define MOD 998244353
#define INF 1000000000

int main(){
  int N;
  cin>>N;
  vector<ll> A(N+1,0),B(N+1,0),C(N+1,0);
  for(int i=1;i<=N;i++){
    cin>>A[i];
  }
  for(int i=1;i<=N;i++){
    cin>>B[i];
    C[i]=(ll)i;
  }
  vector<ll> a=convolution_ll(A,C);
  vector<ll> b=convolution_ll(B,C);
  for(int i=1;i<=2*N;i++){
    cout<<a[i]+b[i]<<" ";
  }
  cout<<endl;
}
0