結果

問題 No.1618 Convolution?
ユーザー m1k__m1k__
提出日時 2021-07-22 22:31:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 545 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 119,072 KB
最終ジャッジ日時 2024-07-17 18:42:39
合計ジャッジ時間 6,927 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 40 ms
52,328 KB
testcase_02 AC 161 ms
102,436 KB
testcase_03 AC 163 ms
106,868 KB
testcase_04 AC 146 ms
100,736 KB
testcase_05 AC 59 ms
72,292 KB
testcase_06 AC 164 ms
109,136 KB
testcase_07 AC 168 ms
109,188 KB
testcase_08 AC 146 ms
100,448 KB
testcase_09 AC 190 ms
119,072 KB
testcase_10 AC 153 ms
101,760 KB
testcase_11 AC 187 ms
117,492 KB
testcase_12 AC 181 ms
116,796 KB
testcase_13 AC 181 ms
115,776 KB
testcase_14 AC 192 ms
115,240 KB
testcase_15 AC 194 ms
115,628 KB
testcase_16 AC 197 ms
115,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(x) for x in input().split()]
B = [int(x) for x in input().split()]
C = [0]*(2*N)
s = 0
for i in range(1, N+1):
    tmp = A[i-1]+B[i-1]
    C[i] = C[i-1]+tmp+s
    s += tmp
s = 0
for i in range(2*N-1, N, -1):
    tmp = A[i-N]+B[i-N]
    C[i] = N*tmp - s
    if i<2*N-1: C[i]+=C[i+1]
    s += tmp
print(*C)
0