結果
問題 | No.754 畳み込みの和 |
ユーザー | Siqing Hou |
提出日時 | 2018-12-25 16:17:03 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 555 bytes |
コンパイル時間 | 462 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 44,604 KB |
最終ジャッジ日時 | 2024-10-01 13:25:28 |
合計ジャッジ時間 | 6,989 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
def linelist(T=int): return [T(x) for x in input().split()] def read(T=int): return T(input()) def ndarray(dims, v=0): if len(dims) == 1: return [v for _ in range(dims[0])] else: return [ndarray(dims[1:], v) for _ in range(dims[0])] import numpy as np modp = 10**9+7 n = read() a = np.zeros(n+1) b = np.zeros(n+1) 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)