結果

問題 No.1618 Convolution?
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-23 23:24:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 135,092 KB
最終ジャッジ日時 2024-07-18 21:21:23
合計ジャッジ時間 8,634 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,224 KB
testcase_01 AC 33 ms
52,480 KB
testcase_02 AC 156 ms
114,968 KB
testcase_03 AC 167 ms
122,776 KB
testcase_04 AC 148 ms
108,388 KB
testcase_05 AC 60 ms
75,264 KB
testcase_06 AC 181 ms
125,332 KB
testcase_07 AC 177 ms
125,580 KB
testcase_08 AC 150 ms
108,864 KB
testcase_09 AC 202 ms
133,028 KB
testcase_10 AC 166 ms
112,596 KB
testcase_11 AC 194 ms
134,752 KB
testcase_12 AC 219 ms
134,576 KB
testcase_13 AC 193 ms
133,996 KB
testcase_14 AC 206 ms
134,840 KB
testcase_15 AC 206 ms
133,940 KB
testcase_16 AC 212 ms
135,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))+[0]
B = list(map(int,input().split()))+[0]
C = [0]*(2*n+1)
cum = 0
add = 0
for i in range(2*n):
    if i < n:
        add += A[i]
    if i >= n:
        cum -= n*A[i-n]
        add -= A[i-n]
    cum += add
    C[i+1] += cum
    
cum = 0
add = 0
for i in range(2*n):
    if i < n:
        add += B[i]
    if i >= n:
        cum -= n*B[i-n]
        add -= B[i-n]
    cum += add
    C[i+1] += cum

print(*C[:-1])
0