結果

問題 No.1618 Convolution?
ユーザー nok0nok0
提出日時 2021-07-10 14:10:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 996 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 61,800 KB
最終ジャッジ日時 2024-07-17 15:53:06
合計ジャッジ時間 15,676 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 688 ms
36,072 KB
testcase_03 AC 801 ms
41,120 KB
testcase_04 AC 617 ms
42,576 KB
testcase_05 AC 74 ms
13,568 KB
testcase_06 AC 785 ms
52,844 KB
testcase_07 AC 794 ms
52,908 KB
testcase_08 AC 618 ms
42,172 KB
testcase_09 AC 960 ms
61,232 KB
testcase_10 AC 651 ms
44,816 KB
testcase_11 AC 895 ms
56,632 KB
testcase_12 AC 943 ms
61,800 KB
testcase_13 AC 953 ms
60,092 KB
testcase_14 AC 996 ms
60,084 KB
testcase_15 AC 943 ms
60,476 KB
testcase_16 AC 931 ms
60,092 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