結果

問題 No.754 畳み込みの和
ユーザー trineutrontrineutron
提出日時 2020-03-14 11:11:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 484 bytes
コンパイル時間 2,084 ms
コンパイル使用メモリ 202,480 KB
実行使用メモリ 5,504 KB
最終ジャッジ日時 2024-05-02 22:55:22
合計ジャッジ時間 2,983 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main() {
    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);
    }
    int64_t ans = 0, mod = 1000000007;
    for (int i = 0; i <= n; i++) {
        ans += s.at(i + 1) * b.at(n - i);
        ans %= mod;
    }
    cout << ans << endl;
}
0