結果

問題 No.1618 Convolution?
ユーザー trineutrontrineutron
提出日時 2021-07-22 21:38:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 744 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 675 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 58,132 KB
最終ジャッジ日時 2024-07-17 16:50:45
合計ジャッジ時間 13,000 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 541 ms
36,740 KB
testcase_03 AC 644 ms
41,900 KB
testcase_04 AC 482 ms
40,468 KB
testcase_05 AC 64 ms
13,056 KB
testcase_06 AC 622 ms
48,336 KB
testcase_07 AC 621 ms
50,332 KB
testcase_08 AC 490 ms
40,428 KB
testcase_09 AC 742 ms
56,756 KB
testcase_10 AC 516 ms
41,996 KB
testcase_11 AC 698 ms
54,160 KB
testcase_12 AC 728 ms
57,456 KB
testcase_13 AC 744 ms
57,180 KB
testcase_14 AC 741 ms
55,724 KB
testcase_15 AC 733 ms
58,132 KB
testcase_16 AC 736 ms
55,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = []

sa = 0
sb = 0
ssa = 0
ssb = 0
for i in range(n):
    ans.append(ssa + ssb)
    sa += a[i]
    sb += b[i]
    ssa += sa
    ssb += sb

for i in range(n):
    ans.append(ssa + ssb)
    sa -= a[i]
    sb -= b[i]
    ssa += sa - n * a[i]
    ssb += sb - n * b[i]

print(*ans)
0