結果

問題 No.754 畳み込みの和
ユーザー m_tsubasam_tsubasa
提出日時 2018-12-03 15:30:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 506 bytes
コンパイル時間 1,466 ms
コンパイル使用メモリ 167,332 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 05:37:34
合計ジャッジ時間 2,239 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
6,812 KB
testcase_01 AC 81 ms
6,944 KB
testcase_02 AC 80 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

long long n;
long long a[100005] = {0};
long long b[100005] = {0};

long long solve();

int main() {
  cin >> n;
  for(int i = 0; i <= n; ++i) cin >> a[i];
  for(int i = 0; i <= n; ++i) {
    cin >> b[i];
    if(i != 0) b[i] += b[i - 1];
    b[i] %= N;
  }

  cout << solve() << endl;
  return 0;
}

long long solve() {
  long long ans = 0;
  for(int i = 0; i <= n; ++i) {
    ans += a[i] * b[n - i] % N;
    ans %= N;
  }
  return ans;
}
0