結果

問題 No.1618 Convolution?
ユーザー keijakkeijak
提出日時 2021-07-23 18:55:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 133,700 KB
最終ジャッジ日時 2024-07-18 13:54:29
合計ジャッジ時間 6,539 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 32 ms
52,352 KB
testcase_02 AC 136 ms
113,164 KB
testcase_03 AC 153 ms
121,604 KB
testcase_04 AC 139 ms
109,168 KB
testcase_05 AC 53 ms
74,320 KB
testcase_06 AC 167 ms
123,984 KB
testcase_07 AC 160 ms
124,052 KB
testcase_08 AC 144 ms
109,848 KB
testcase_09 AC 178 ms
131,804 KB
testcase_10 AC 149 ms
114,020 KB
testcase_11 AC 188 ms
133,504 KB
testcase_12 AC 186 ms
133,508 KB
testcase_13 AC 185 ms
132,344 KB
testcase_14 AC 186 ms
133,700 KB
testcase_15 AC 184 ms
132,320 KB
testcase_16 AC 180 ms
133,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

ca = [0]* (n+1)
for i in range(n):
    ca[i+1] = ca[i] + a[i] + b[i]


c = [0] * (2*n + 1)
for k in range(2, 2*n + 1):
    s = c[k-1]
    e = k - (n+1)
    s += ca[min(k-1, n)] - ca[max(e,0)]
    #for j in range(max(e,0), min(k-1, n)):
        #s += a[j] + b[j]
    if e >= 1:
        s -= n * (a[e-1] + b[e-1])
    c[k] = s

print(*c[1:])
0