結果

問題 No.1618 Convolution?
ユーザー merom686merom686
提出日時 2021-07-22 21:44:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 755 bytes
コンパイル時間 2,228 ms
コンパイル使用メモリ 202,740 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-07-17 17:07:07
合計ジャッジ時間 7,496 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 44 ms
7,936 KB
testcase_03 AC 53 ms
8,960 KB
testcase_04 AC 48 ms
7,040 KB
testcase_05 AC 6 ms
5,376 KB
testcase_06 AC 61 ms
8,320 KB
testcase_07 AC 62 ms
8,448 KB
testcase_08 AC 48 ms
7,296 KB
testcase_09 AC 74 ms
9,464 KB
testcase_10 AC 51 ms
7,296 KB
testcase_11 AC 69 ms
8,984 KB
testcase_12 AC 73 ms
9,472 KB
testcase_13 AC 76 ms
9,344 KB
testcase_14 AC 74 ms
9,396 KB
testcase_15 AC 75 ms
9,344 KB
testcase_16 AC 75 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);

    int n;
    cin >> n;

    vector<ll> a(n + 1), b(n + 1);
    for (int i = 0; i < n; i++) {
        int t;
        cin >> t;
        a[i + 1] = a[i] + t;
    }
    for (int i = 0; i < n; i++) {
        int t;
        cin >> t;
        b[i + 1] = b[i] + t;
        a[i + 1] += b[i + 1];
    }

    vector<ll> c(n * 2);
    for (int i = 0; i < n; i++) {
        c[i + 1] = c[i] + a[i + 1];
    }
    for (int i = 0; i < n - 1; i++) {
        c[n + i + 1] = c[n + i] - (a[i + 1] - a[i]) * n + a[n] - a[i + 1];
    }
    for (int i = 0; i < n * 2; i++) {
        cout << c[i] << " \n"[i == n * 2 - 1];
    }

    return 0;
}
0