結果
問題 | No.1618 Convolution? |
ユーザー | hiro71687k |
提出日時 | 2023-08-27 10:52:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 795 bytes |
コンパイル時間 | 4,114 ms |
コンパイル使用メモリ | 261,608 KB |
実行使用メモリ | 9,600 KB |
最終ジャッジ日時 | 2024-06-08 06:27:39 |
合計ジャッジ時間 | 15,313 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using namespace std; using ll=long long; using ld=long double; ld pie=3.141592653589793; ll mod=998244353; ll inf=1009999999999999990; int main(){ ll n; cin >> n; vector<ll>a(n),b(n); for (ll i = 0; i < n; i++) { cin >>a[i]; } for (ll i = 0; i < n; i++) { cin >> b[i]; } vector<ll>c(n*2); c[0]=0; c[1]=a[0]+b[0]; ll sum=a[0]+b[0]; for (ll i = 2; i <= n; i++) { c[i]=c[i-1]+sum+a[i-1]+b[i-1]; sum+=a[i-1]+b[i-1]; } for (ll i = n+1; i < 2*n; i++) { sum-=a[i-n-1]+b[i-n-1]; c[i]=c[i-1]+sum-a[i-n-1]*n-b[i-n-1]*n; } for (ll i = 0; i < c.size(); i++) { cout << c[i] << endl; } }