結果

問題 No.1618 Convolution?
ユーザー KudeKude
提出日時 2021-07-22 21:48:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 133,952 KB
最終ジャッジ日時 2024-07-17 17:14:52
合計ジャッジ時間 6,681 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,012 KB
testcase_01 AC 38 ms
52,968 KB
testcase_02 AC 158 ms
116,508 KB
testcase_03 AC 172 ms
121,736 KB
testcase_04 AC 153 ms
108,804 KB
testcase_05 AC 62 ms
74,976 KB
testcase_06 AC 183 ms
123,828 KB
testcase_07 AC 182 ms
123,924 KB
testcase_08 AC 157 ms
107,720 KB
testcase_09 AC 204 ms
132,036 KB
testcase_10 AC 166 ms
111,632 KB
testcase_11 AC 205 ms
133,952 KB
testcase_12 AC 203 ms
133,520 KB
testcase_13 AC 202 ms
132,208 KB
testcase_14 AC 204 ms
133,032 KB
testcase_15 AC 204 ms
132,036 KB
testcase_16 AC 201 ms
133,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input()) + 1
c = [0] * 2 * n
a1 = [0] + list(map(int, input().split()))
a2 = [0] + list(map(int, input().split()))
for a in a1, a2:
    s = 0
    acc = 0
    for i, x in enumerate(a):
        acc += s
        c[i] += acc
        s += x
    for i in range(n):
        acc += s
        acc -= n * a[i]
        s -= a[i]
        c[i + n] += acc
print(*c[1:-1])
0