結果
問題 | No.754 畳み込みの和 |
ユーザー | Ohnuma |
提出日時 | 2020-04-11 10:00:08 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 219 bytes |
コンパイル時間 | 301 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 50,188 KB |
最終ジャッジ日時 | 2024-09-17 20:56:19 |
合計ジャッジ時間 | 7,319 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
import numpy as np mod =10**9+7 n = int(input()) A = list(int(input()) for _ in range(n+1)) B = list(int(input()) for _ in range(n+1)) A = np.cumsum(A) ans = 0 for i in range(n+1): ans += A[i]*B[n-i] print(ans%mod)