結果

問題 No.1618 Convolution?
ユーザー AEnAEn
提出日時 2022-11-28 22:43:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 473 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 181,564 KB
最終ジャッジ日時 2024-10-06 00:07:28
合計ジャッジ時間 8,397 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 178 ms
149,964 KB
testcase_03 AC 195 ms
164,192 KB
testcase_04 AC 170 ms
136,044 KB
testcase_05 AC 60 ms
77,440 KB
testcase_06 AC 209 ms
161,720 KB
testcase_07 AC 206 ms
161,764 KB
testcase_08 AC 181 ms
136,908 KB
testcase_09 AC 234 ms
180,528 KB
testcase_10 AC 187 ms
143,120 KB
testcase_11 AC 231 ms
176,520 KB
testcase_12 AC 234 ms
181,564 KB
testcase_13 AC 219 ms
180,520 KB
testcase_14 AC 222 ms
181,484 KB
testcase_15 AC 222 ms
180,428 KB
testcase_16 AC 221 ms
181,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

sm_a, sm_b = [0], [0]
for i in range(N):
    sm_a.append(sm_a[-1]+A[i])
    sm_b.append(sm_b[-1]+B[i])

resa, resb = 0, 0
C = [0]
for i in range(2*N-1):
    if i<N:
        resa += sm_a[i+1]
        resb += sm_b[i+1]
    else:
        resa -= N*A[i-N]
        resb -= N*B[i-N]
        resa += sm_a[-1]-sm_a[i-N+1]
        resb += sm_b[-1]-sm_b[i-N+1]
    C.append(resa+resb)
print(*C)
0