結果

問題 No.1618 Convolution?
ユーザー nok0nok0
提出日時 2021-07-09 23:54:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 129,320 KB
最終ジャッジ日時 2024-07-17 15:52:23
合計ジャッジ時間 8,554 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 164 ms
111,924 KB
testcase_03 AC 178 ms
121,808 KB
testcase_04 AC 157 ms
108,448 KB
testcase_05 AC 61 ms
75,472 KB
testcase_06 AC 182 ms
117,336 KB
testcase_07 AC 182 ms
117,460 KB
testcase_08 AC 160 ms
109,380 KB
testcase_09 AC 205 ms
127,144 KB
testcase_10 AC 168 ms
113,180 KB
testcase_11 AC 201 ms
126,104 KB
testcase_12 AC 205 ms
129,320 KB
testcase_13 AC 206 ms
128,512 KB
testcase_14 AC 220 ms
128,792 KB
testcase_15 AC 204 ms
128,012 KB
testcase_16 AC 219 ms
128,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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