結果

問題 No.754 畳み込みの和
ユーザー trineutrontrineutron
提出日時 2020-03-14 11:13:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 2,021 ms
コンパイル使用メモリ 202,508 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-05-02 23:06:34
合計ジャッジ時間 2,849 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main() {
    constexpr int64_t mod = 1000000007;
    int n;
    cin >> n;
    vector<int64_t> a(n + 1), b(n + 1), s(n + 2);
    for (int i = 0; i <= n; i++) cin >> a.at(i);
    for (int i = 0; i <= n; i++) cin >> b.at(i);
    for (int i = 0; i <= n; i++) {
        s.at(i + 1) = (s.at(i) + a.at(i)) % mod;
    }
    int64_t ans = 0;
    for (int i = 0; i <= n; i++) {
        ans += s.at(i + 1) * b.at(n - i);
        ans %= mod;
    }
    cout << ans << endl;
}
0