結果
問題 | No.754 畳み込みの和 |
ユーザー | ate |
提出日時 | 2020-09-11 08:40:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 617 bytes |
コンパイル時間 | 1,961 ms |
コンパイル使用メモリ | 202,224 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-07 02:18:35 |
合計ジャッジ時間 | 14,517 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n) for(int i=0;i<int(n);++i) using i64 = int64_t; constexpr i64 mod = 1e9+7; signed main(){ int n; cin>>n; vector<i64> a(n+1),b(n+1); rep(i,n+1)cin>>a[i]; rep(j,n+1)cin>>b[j]; vector<i64> sumb(n+2); rep(i,n+1)sumb[i+1]=sumb[i]+b[i]; i64 sum1 = 0; for(int i=0;i<=n;++i){ for(int j=0;j<=i;++j){ sum1 += a[i]*b[i-j]; sum1 %= mod; } } /* i64 sum2 = 0; for(int i=0;i<=n;++i){ for(int j=0;j<=n-i;++j){ sum2 += a[i]*b[j]; sum2 %= mod; } } */ cout<<(sum1)<<endl; //cout<<(sum2)<<endl; }