結果

問題 No.1618 Convolution?
ユーザー O2MTO2MT
提出日時 2021-07-23 18:14:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 587 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 170,436 KB
最終ジャッジ日時 2024-07-18 13:12:07
合計ジャッジ時間 8,713 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 179 ms
149,808 KB
testcase_03 AC 214 ms
163,860 KB
testcase_04 AC 173 ms
136,444 KB
testcase_05 AC 68 ms
77,636 KB
testcase_06 AC 218 ms
161,696 KB
testcase_07 AC 215 ms
161,352 KB
testcase_08 AC 183 ms
137,084 KB
testcase_09 AC 237 ms
169,720 KB
testcase_10 AC 189 ms
142,928 KB
testcase_11 AC 226 ms
167,892 KB
testcase_12 AC 267 ms
170,296 KB
testcase_13 AC 252 ms
169,216 KB
testcase_14 AC 249 ms
170,048 KB
testcase_15 AC 242 ms
169,144 KB
testcase_16 AC 239 ms
170,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
AC = list(accumulate(A))
BC = list(accumulate(B))
C = [0]
for i in range(N):
  C.append(C[-1]+AC[i]+BC[i])

for i in range(N-1):
  if i > 0:
    C.append(C[-1]+AC[-1]+BC[-1]-(AC[i-1]+BC[i-1])-(N+1)*(A[i]+B[i]))
  else:
    C.append(C[-1]+AC[-1]+BC[-1]-(N+1)*(A[i]+B[i]))

print(*C)
0