結果

問題 No.1618 Convolution?
ユーザー googol_S0googol_S0
提出日時 2021-07-22 21:50:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 347 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 4,251 ms
コンパイル使用メモリ 263,368 KB
実行使用メモリ 24,584 KB
最終ジャッジ日時 2024-07-17 17:21:42
合計ジャッジ時間 12,321 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 249 ms
20,612 KB
testcase_03 AC 268 ms
23,212 KB
testcase_04 AC 191 ms
16,136 KB
testcase_05 AC 18 ms
6,940 KB
testcase_06 AC 302 ms
21,476 KB
testcase_07 AC 305 ms
21,688 KB
testcase_08 AC 194 ms
16,264 KB
testcase_09 AC 333 ms
24,300 KB
testcase_10 AC 270 ms
16,856 KB
testcase_11 AC 323 ms
23,400 KB
testcase_12 AC 346 ms
24,448 KB
testcase_13 AC 347 ms
24,564 KB
testcase_14 AC 343 ms
24,548 KB
testcase_15 AC 342 ms
24,584 KB
testcase_16 AC 341 ms
24,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
typedef long long ll;
int main(){
  int N;
  cin>>N;
  vector<ll> A(N);
  vector<ll> B(N);
  for(int i=0;i<N;i++){
    cin>>A[i];
  }for(int i=0;i<N;i++){
    cin>>B[i];
    A[i]+=B[i];
  }
  vector<ll> C(N+1);
  for(int i=0;i<=N;i++){
    C[i]=i;
  }
  vector<ll> ANS=convolution_ll(A,C);
  for(int i=0;i<2*N;i++){
    if(i){
      cout<<" ";
    }
    cout<<ANS[i];
  }
  cout<<"\n";
}
0