結果

問題 No.1618 Convolution?
ユーザー 👑 rin204rin204
提出日時 2022-03-21 22:48:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 135,320 KB
最終ジャッジ日時 2024-10-09 13:45:18
合計ジャッジ時間 7,996 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 168 ms
114,064 KB
testcase_03 AC 181 ms
123,076 KB
testcase_04 AC 163 ms
108,336 KB
testcase_05 AC 62 ms
73,600 KB
testcase_06 AC 192 ms
125,240 KB
testcase_07 AC 190 ms
125,584 KB
testcase_08 AC 163 ms
108,748 KB
testcase_09 AC 236 ms
133,428 KB
testcase_10 AC 183 ms
113,304 KB
testcase_11 AC 214 ms
135,320 KB
testcase_12 AC 211 ms
135,092 KB
testcase_13 AC 210 ms
134,064 KB
testcase_14 AC 212 ms
134,600 KB
testcase_15 AC 208 ms
134,096 KB
testcase_16 AC 211 ms
134,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = [0] * (2 * n + 1)
D = [0] * (2 * n + 1)
for i, (a, b) in enumerate(zip(A, B)):
    D[i + 1] += a
    D[i + n + 1] -= a
    C[i + n + 1] -= n * a
    D[i + 1] += b
    C[i + n + 1] -= n * b
    D[i + n + 1] -= b

for i in range(1, 2 * n):
    D[i] += D[i - 1]
    C[i] += C[i - 1] + D[i]

print(*C[:-1])
0