結果

問題 No.754 畳み込みの和
ユーザー kyunakyuna
提出日時 2019-07-18 22:32:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 508 bytes
コンパイル時間 973 ms
コンパイル使用メモリ 72,192 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-07 16:05:52
合計ジャッジ時間 2,001 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
5,248 KB
testcase_01 AC 78 ms
5,376 KB
testcase_02 AC 75 ms
5,376 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