結果

問題 No.206 数の積集合を求めるクエリ
ユーザー Eki1009Eki1009
提出日時 2020-12-29 20:49:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 745 ms / 7,000 ms
コード長 356 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 120,260 KB
最終ジャッジ日時 2024-10-06 02:14:22
合計ジャッジ時間 22,229 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 586 ms
109,364 KB
testcase_01 AC 609 ms
109,208 KB
testcase_02 AC 619 ms
109,088 KB
testcase_03 AC 619 ms
109,480 KB
testcase_04 AC 581 ms
108,832 KB
testcase_05 AC 608 ms
109,208 KB
testcase_06 AC 600 ms
109,016 KB
testcase_07 AC 596 ms
109,200 KB
testcase_08 AC 606 ms
108,872 KB
testcase_09 AC 588 ms
109,160 KB
testcase_10 AC 591 ms
109,204 KB
testcase_11 AC 599 ms
109,348 KB
testcase_12 AC 605 ms
109,016 KB
testcase_13 AC 615 ms
109,208 KB
testcase_14 AC 626 ms
108,796 KB
testcase_15 AC 597 ms
108,728 KB
testcase_16 AC 611 ms
109,432 KB
testcase_17 AC 735 ms
119,184 KB
testcase_18 AC 657 ms
114,248 KB
testcase_19 AC 718 ms
118,900 KB
testcase_20 AC 670 ms
114,332 KB
testcase_21 AC 662 ms
115,764 KB
testcase_22 AC 660 ms
116,624 KB
testcase_23 AC 669 ms
119,376 KB
testcase_24 AC 745 ms
120,260 KB
testcase_25 AC 742 ms
119,132 KB
testcase_26 AC 721 ms
114,012 KB
testcase_27 AC 677 ms
112,792 KB
testcase_28 AC 711 ms
116,628 KB
testcase_29 AC 698 ms
115,668 KB
testcase_30 AC 700 ms
113,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
l, m, n = map(int, input().split())
A = tuple(map(int, input().split()))
B = tuple(map(int, input().split()))
P = [0]*(n+1)
Q = [0]*(n+1)
for a in A:P[a] = 1
for b in B:Q[n-b] = 1
fP = np.fft.rfft(P, 2**20)
fQ = np.fft.rfft(Q, 2**20)
fR = fP * fQ
R = np.rint(np.fft.irfft(fR)).astype(np.int64)
q = int(input())
print(*R[n:n+q], sep="\n")
0