結果

問題 No.1618 Convolution?
ユーザー brthyyjpbrthyyjp
提出日時 2021-07-25 18:27:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 132,100 KB
最終ジャッジ日時 2024-07-21 02:51:45
合計ジャッジ時間 7,791 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 150 ms
112,768 KB
testcase_03 AC 170 ms
120,332 KB
testcase_04 AC 154 ms
106,152 KB
testcase_05 AC 65 ms
74,624 KB
testcase_06 AC 172 ms
122,532 KB
testcase_07 AC 172 ms
122,752 KB
testcase_08 AC 151 ms
106,948 KB
testcase_09 AC 193 ms
130,600 KB
testcase_10 AC 157 ms
110,728 KB
testcase_11 AC 195 ms
132,100 KB
testcase_12 AC 205 ms
131,880 KB
testcase_13 AC 206 ms
131,116 KB
testcase_14 AC 200 ms
131,712 KB
testcase_15 AC 206 ms
130,604 KB
testcase_16 AC 209 ms
131,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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