結果
問題 | No.754 畳み込みの和 |
ユーザー | 夕叢霧香(ゆうむらきりか) |
提出日時 | 2018-12-02 11:44:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 25 ms / 5,000 ms |
コード長 | 486 bytes |
コンパイル時間 | 646 ms |
コンパイル使用メモリ | 74,520 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-06-28 14:27:00 |
合計ジャッジ時間 | 1,589 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
6,812 KB |
testcase_01 | AC | 25 ms
6,940 KB |
testcase_02 | AC | 25 ms
6,940 KB |
ソースコード
#include<algorithm> #include<iostream> #include<vector> using namespace std; typedef long long lint; typedef vector<int>vi; typedef pair<int,int>pii; #define rep(i,n)for(int i=0;i<(int)(n);++i) const int N=110000; lint a[N],b[N]; const lint mo=1000000007; int main(){ ios_base::sync_with_stdio(false); cin.tie(0); int n; cin>>n; rep(i,n+1)cin>>a[i]; rep(i,n+1)cin>>b[i]; rep(i,N-1)b[i+1]=(b[i]+b[i+1])%mo; lint c=0; rep(i,n+1)c=(c+a[i]*b[n-i])%mo; cout<<c<<endl; }