結果

問題 No.1618 Convolution?
ユーザー risujirohrisujiroh
提出日時 2021-07-22 21:36:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 398 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 3,240 ms
コンパイル使用メモリ 233,296 KB
実行使用メモリ 25,584 KB
最終ジャッジ日時 2024-07-17 16:47:50
合計ジャッジ時間 12,358 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 362 ms
20,912 KB
testcase_03 AC 375 ms
23,860 KB
testcase_04 AC 211 ms
17,016 KB
testcase_05 AC 22 ms
5,376 KB
testcase_06 AC 379 ms
22,008 KB
testcase_07 AC 379 ms
22,060 KB
testcase_08 AC 212 ms
17,104 KB
testcase_09 AC 395 ms
25,384 KB
testcase_10 AC 357 ms
18,836 KB
testcase_11 AC 395 ms
24,088 KB
testcase_12 AC 393 ms
25,504 KB
testcase_13 AC 396 ms
25,460 KB
testcase_14 AC 398 ms
25,456 KB
testcase_15 AC 395 ms
25,584 KB
testcase_16 AC 398 ms
25,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/convolution>

int main() {
  using namespace std;
  cin.tie(nullptr)->sync_with_stdio(false);
  int n;
  cin >> n;
  vector<long long> a(n), b(n), c(n);
  for (auto&& e : a) cin >> e;
  for (auto&& e : b) cin >> e;
  iota(begin(c), end(c), 1);
  auto ans = atcoder::convolution_ll(c, a);
  auto temp = atcoder::convolution_ll(c, b);
  for (int i = 0; i < int(temp.size()); ++i) ans[i] += temp[i];
  cout << '0';
  for (auto&& e : ans) cout << ' ' << e;
  cout << '\n';
}
0