結果

問題 No.1618 Convolution?
ユーザー lloyzlloyz
提出日時 2022-09-21 00:05:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 838 ms / 2,000 ms
コード長 477 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 75,236 KB
最終ジャッジ日時 2024-06-01 17:08:30
合計ジャッジ時間 16,051 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 576 ms
45,200 KB
testcase_03 AC 673 ms
53,344 KB
testcase_04 AC 523 ms
50,880 KB
testcase_05 AC 69 ms
13,696 KB
testcase_06 AC 684 ms
65,104 KB
testcase_07 AC 691 ms
66,076 KB
testcase_08 AC 534 ms
52,232 KB
testcase_09 AC 838 ms
75,236 KB
testcase_10 AC 565 ms
54,428 KB
testcase_11 AC 760 ms
70,028 KB
testcase_12 AC 824 ms
74,496 KB
testcase_13 AC 818 ms
74,444 KB
testcase_14 AC 825 ms
73,124 KB
testcase_15 AC 809 ms
74,452 KB
testcase_16 AC 824 ms
73,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

accumA = [0]
accumB = [0]
for i in range(n):
    accumA.append(accumA[-1] + A[i])
    accumB.append(accumB[-1] + B[i])
C = []
for i in range(2 * n):
    if i == 0:
        C.append(0)
    elif i <= n:
        C.append(C[-1] + accumA[i] + accumB[i])
    else:
        C.append(C[-1] + accumA[n] - accumA[i - n] - n * A[i - n - 1] + accumB[n] - accumB[i - n] - n * B[i - n - 1])
print(*C)
0