結果

問題 No.1618 Convolution?
ユーザー t98slidert98slider
提出日時 2021-07-22 22:01:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 502 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 3,805 ms
コンパイル使用メモリ 230,064 KB
実行使用メモリ 25,692 KB
最終ジャッジ日時 2024-07-17 17:49:42
合計ジャッジ時間 13,790 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 403 ms
20,888 KB
testcase_03 AC 425 ms
24,092 KB
testcase_04 AC 273 ms
16,988 KB
testcase_05 AC 26 ms
6,944 KB
testcase_06 AC 456 ms
21,980 KB
testcase_07 AC 460 ms
22,200 KB
testcase_08 AC 274 ms
17,208 KB
testcase_09 AC 490 ms
25,448 KB
testcase_10 AC 423 ms
19,036 KB
testcase_11 AC 480 ms
24,192 KB
testcase_12 AC 499 ms
25,588 KB
testcase_13 AC 502 ms
25,568 KB
testcase_14 AC 498 ms
25,688 KB
testcase_15 AC 497 ms
25,552 KB
testcase_16 AC 499 ms
25,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<atcoder/all>
#include<bits/stdc++.h>
using namespace std;

int main(){
    int n;
    cin>>n;
    vector<long long> a(n),b(n),c(n);
    for(auto &&v:a)cin>>v;
    for(auto &&v:b)cin>>v;
    iota(c.begin(),c.end(),1);
    auto c1=atcoder::convolution_ll(a,c);
    auto c2=atcoder::convolution_ll(b,c);
    cout<<0;
    for(int i=0;i<2*n-1;i++){
        cout<<" "<<c1[i]+c2[i];
    }
    cout<<endl;
}
0