結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
6,820 KB
testcase_01 AC 84 ms
6,816 KB
testcase_02 AC 85 ms
6,820 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