結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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) * b.at(n - i);
        ans %= mod;
    }
    cout << ans << endl;
}
0