結果

問題 No.1503 Bitwise And Convolution Twisted
ユーザー noshi91noshi91
提出日時 2020-12-31 22:54:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 541 bytes
コンパイル時間 849 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 34,692 KB
最終ジャッジ日時 2024-11-14 13:11:49
合計ジャッジ時間 16,489 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 1 ms
16,164 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 2 ms
34,644 KB
testcase_04 AC 2 ms
13,636 KB
testcase_05 AC 2 ms
34,528 KB
testcase_06 AC 1,127 ms
13,636 KB
testcase_07 TLE -
testcase_08 AC 1,112 ms
6,820 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

int main() {
  using ll = long long;

  std::ios::sync_with_stdio(false);
  std::cin.tie(nullptr);

  int N;
  std::cin >> N;
  const int m = 1 << N;
  std::vector<ll> A(m), B(m), C(m, 0);
  for (ll &e : A) {
    std::cin >> e;
  }
  for (ll &e : B) {
    std::cin >> e;
  }

  for (int k = 0; k != m; ++k) {
    for (int i = 0; i != m; ++i) {
      C[k] = (C[k] + A[i] * B[i & k]) % 998244353;
    }
  }

  for (int i = 0; i != m; ++i) {
    std::cout << C[i] << " \n"[i + 1 == m];
  }

  return 0;
}
0