結果

問題 No.1618 Convolution?
ユーザー kimiyukikimiyuki
提出日時 2021-07-22 22:27:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 812 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 179,172 KB
最終ジャッジ日時 2024-07-17 18:32:13
合計ジャッジ時間 7,772 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
67,456 KB
testcase_01 AC 71 ms
66,944 KB
testcase_02 AC 229 ms
156,372 KB
testcase_03 AC 249 ms
169,812 KB
testcase_04 AC 215 ms
141,428 KB
testcase_05 AC 105 ms
79,616 KB
testcase_06 AC 270 ms
158,704 KB
testcase_07 AC 243 ms
158,336 KB
testcase_08 AC 207 ms
141,992 KB
testcase_09 AC 266 ms
178,808 KB
testcase_10 AC 213 ms
150,888 KB
testcase_11 AC 268 ms
174,600 KB
testcase_12 AC 298 ms
179,172 KB
testcase_13 AC 276 ms
178,876 KB
testcase_14 AC 267 ms
178,748 KB
testcase_15 AC 264 ms
178,984 KB
testcase_16 AC 269 ms
178,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
from typing import *


def solve1(n: int, a: List[int]) -> List[int]:
    c = [0 for _ in range(2 * n)]
    for j in range(n):
        c[j + 1] += a[j]
        if j + n + 1 < 2 * n:
            c[j + n + 1] -= a[j]
    for k in range(2 * n - 1):
        c[k + 1] += c[k]
    for j in range(n):
        if j + n + 1 < 2 * n:
            c[j + n + 1] -= n * a[j]
    for k in range(2 * n - 1):
        c[k + 1] += c[k]
    return c

def solve(n: int, a: List[int], b: List[int]) -> List[int]:
    c1 = solve1(n, a)
    c2 = solve1(n, b)
    c = list(map(lambda x, y: x + y, c1, c2))
    return c


def main():
    n = int(input())
    a = list(map(int, input().split()))
    b = list(map(int, input().split()))
    ans = solve(n, a, b)
    print(*ans)


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