結果
問題 | No.1618 Convolution? |
ユーザー | 草苺奶昔 |
提出日時 | 2023-03-14 15:15:15 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 480 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 95,564 KB |
最終ジャッジ日時 | 2024-09-18 08:05:22 |
合計ジャッジ時間 | 22,897 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 515 ms
44,084 KB |
testcase_01 | AC | 518 ms
44,484 KB |
testcase_02 | AC | 1,073 ms
79,364 KB |
testcase_03 | AC | 1,133 ms
82,052 KB |
testcase_04 | WA | - |
testcase_05 | AC | 538 ms
44,728 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
import numpy as np def convolution(A, B): n, m = len(A), len(B) ph = 1 << (n + m - 2).bit_length() T = np.fft.rfft(A, ph) * np.fft.rfft(B, ph) res = np.fft.irfft(T, ph)[: n + m - 1] return np.rint(res).astype(np.int64) n = int(input()) A = list(map(int, input().split())) B = list(map(int, input().split())) A = [0] + A B = [0] + B f = list(range(n + 1)) A = convolution(A, f) B = convolution(B, f) C = [a + b for a, b in zip(A, B)] C = C[1:] print(*C)