結果
問題 | No.754 畳み込みの和 |
ユーザー | nohakai3 |
提出日時 | 2022-07-27 15:46:03 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 249 bytes |
コンパイル時間 | 337 ms |
コンパイル使用メモリ | 82,164 KB |
実行使用メモリ | 294,496 KB |
最終ジャッジ日時 | 2024-07-17 04:34:22 |
合計ジャッジ時間 | 12,877 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
ソースコード
from itertools import accumulate n = int(input()) A = [int(input()) for _ in range(n + 1)] B = [int(input()) for _ in range(n + 1)] mod = 10**9 + 7 ans=0 for i in range(n+1): a=list(accumulate(B)) ans+=A[i]*a[n-i] ans%=mod print(ans)