結果

問題 No.754 畳み込みの和
ユーザー Siqing HouSiqing Hou
提出日時 2018-12-25 16:37:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 983 ms / 5,000 ms
コード長 449 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 42,760 KB
最終ジャッジ日時 2024-04-08 22:33:15
合計ジャッジ時間 4,472 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 983 ms
42,760 KB
testcase_01 AC 969 ms
42,760 KB
testcase_02 AC 981 ms
42,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def linelist(T=int):
    return [T(x) for x in input().split()]


def read(T=int):
    return T(input())



modp = 10 ** 9 + 7

n = read()
a = np.zeros(n + 1, dtype=np.longlong)
b = np.zeros(n + 1, dtype=np.longlong)
for i in range(n + 1):
    a[i] = read()
for i in range(n + 1):
    b[i] = read()

ans = 0
suma = 0
for i in range(n + 1):
    suma += a[i]
    suma %= modp
    ans += suma * b[n - i]
    ans %= modp
print(ans)
0