結果

問題 No.1618 Convolution?
ユーザー tamatotamato
提出日時 2021-07-22 21:56:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 147,592 KB
最終ジャッジ日時 2024-07-17 17:39:55
合計ジャッジ時間 6,834 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 43 ms
52,224 KB
testcase_02 AC 186 ms
123,844 KB
testcase_03 AC 192 ms
134,900 KB
testcase_04 AC 164 ms
116,736 KB
testcase_05 AC 63 ms
74,240 KB
testcase_06 AC 196 ms
135,940 KB
testcase_07 AC 194 ms
136,220 KB
testcase_08 AC 169 ms
116,948 KB
testcase_09 AC 219 ms
145,948 KB
testcase_10 AC 177 ms
122,544 KB
testcase_11 AC 214 ms
144,316 KB
testcase_12 AC 216 ms
147,372 KB
testcase_13 AC 228 ms
146,384 KB
testcase_14 AC 225 ms
147,592 KB
testcase_15 AC 213 ms
146,212 KB
testcase_16 AC 214 ms
147,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    A = list(map(int, input().split()))
    B = list(map(int, input().split()))
    AB = [a + b for a, b in zip(A, B)]

    C = [0] * (2*N)
    imos = [0] * (2*N+2)
    imos2 = [0] * (2*N+2)
    for i, ab in enumerate(AB):
        imos2[i+1] += ab
        imos2[i+1 + N] += -ab * (N+1)
        imos2[i+2 + N] += ab * N
    for i in range(1, 2*N+1):
        imos[i] = imos[i-1] + imos2[i]
    for i in range(1, 2*N):
        C[i] = C[i-1] + imos[i]
    print(*C)


if __name__ == '__main__':
    main()
0