結果

問題 No.754 畳み込みの和
ユーザー kyunakyuna
提出日時 2019-07-18 22:32:32
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 89 ms / 5,000 ms
コード長 508 bytes
コンパイル時間 912 ms
コンパイル使用メモリ 71,936 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-25 22:42:22
合計ジャッジ時間 2,210 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <vector>
using namespace std;
const int MOD = (int)1e9 + 7;

int main() {
    int n; cin >> n;
    vector<int> a(n + 1), b(n + 1);
    for (int &ai: a) cin >> ai;
    for (int &bi: b) cin >> bi;
    vector<int> acc_b(n + 2);
    for (int i = 0; i <= n; i++) (acc_b[i + 1] = acc_b[i] + b[i]) %= MOD;
    int sum = 0;
    for (int i = 0; i <= n; i++) {
        (sum += 1LL * a[i] * acc_b[n - i + 1] % MOD) %= MOD;
    }
    cout << sum << endl;
    return 0;
}
0