結果

問題 No.1618 Convolution?
ユーザー Kenshin2438Kenshin2438
提出日時 2022-09-24 16:30:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 849 bytes
コンパイル時間 1,482 ms
コンパイル使用メモリ 170,876 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-06-01 21:49:46
合計ジャッジ時間 7,884 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 38 ms
6,940 KB
testcase_03 AC 45 ms
7,552 KB
testcase_04 AC 42 ms
6,940 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 55 ms
6,940 KB
testcase_07 AC 53 ms
7,168 KB
testcase_08 AC 41 ms
6,940 KB
testcase_09 AC 65 ms
7,936 KB
testcase_10 AC 45 ms
6,940 KB
testcase_11 AC 61 ms
7,680 KB
testcase_12 AC 65 ms
7,936 KB
testcase_13 AC 65 ms
7,936 KB
testcase_14 AC 66 ms
7,808 KB
testcase_15 AC 66 ms
7,808 KB
testcase_16 AC 66 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;
#define all(a) begin(a), end(a)
#define sz(x) (int)((x).size())

#ifdef LOCAL
#include "debug.hpp"
#else
#define debug(...) 42
#endif

void solve() {
  int n; cin >> n;
  vector<ll> a(n + 1);
  for (int i = 1; i <= n; i++) {
    ll x; cin >> x; a[i] += x;
  }
  for (int i = 1; i <= n; i++) {
    ll x; cin >> x; a[i] += x;
  }
  vector<ll> s1(n + 1), s2(n + 1);
  for (int i = 1; i <= n; i++) {
    s1[i] = s1[i - 1] + a[i];
    s2[i] = s2[i - 1] + i * a[i];
  }
  for (int i = 1; i <= n * 2; i++) {
    int r = min(n, i - 1);
    int l = max(1, i - n) - 1;
    ll val = i * (s1[r] - s1[l]) - (s2[r] - s2[l]);
    cout << val << " \n"[i == n * 2];
  }
}

int main() {
  cin.tie(nullptr)->sync_with_stdio(false);

  int T = 1;
  // cin >> T;
  while (T--) solve();

  return 0;
}
0