結果

問題 No.754 畳み込みの和
ユーザー qumazakiqumazaki
提出日時 2020-10-01 20:29:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 328 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 111,576 KB
最終ジャッジ日時 2024-07-07 03:04:27
合計ジャッジ時間 1,176 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
110,764 KB
testcase_01 AC 81 ms
111,576 KB
testcase_02 AC 79 ms
110,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

n,*ab = map(int,read().split())
a = ab[:n+1]
b = ab[n+1:]
mod = 10**9+7

ans = 0
a_tot = sum(a) % mod
for ai,bi in zip(a[::-1],b):
    ans += a_tot * bi
    ans %= mod
    a_tot -= ai
    a_tot %= mod
print(ans)
0