結果
問題 | No.754 畳み込みの和 |
ユーザー | ミドリムシ |
提出日時 | 2018-12-02 08:03:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 81 ms / 5,000 ms |
コード長 | 498 bytes |
コンパイル時間 | 440 ms |
コンパイル使用メモリ | 60,900 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 02:35:16 |
合計ジャッジ時間 | 1,242 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 81 ms
5,248 KB |
testcase_01 | AC | 81 ms
5,376 KB |
testcase_02 | AC | 81 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> using namespace std; int main(){ int n; cin >> n; n++; long a_sum = 0; long a_sums[n]; for(int i = 0; i < n; i++){ long a; cin >> a; a_sum = (a + a_sum) % long(1e9 + 7); a_sums[i] = a_sum; } long ans = 0; for(int i = 0; i < n; i++){ long b; cin >> b; ans += a_sums[n - i - 1] * b % long(1e9 + 7); } cout << ans % long(1e9 + 7) << endl; }