結果

問題 No.206 数の積集合を求めるクエリ
ユーザー shotoyooshotoyoo
提出日時 2020-09-23 22:55:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 706 ms / 7,000 ms
コード長 963 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 70,932 KB
最終ジャッジ日時 2024-06-28 04:39:59
合計ジャッジ時間 20,659 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 519 ms
44,536 KB
testcase_01 AC 525 ms
43,888 KB
testcase_02 AC 531 ms
44,140 KB
testcase_03 AC 509 ms
44,276 KB
testcase_04 AC 520 ms
43,896 KB
testcase_05 AC 529 ms
44,280 KB
testcase_06 AC 523 ms
44,312 KB
testcase_07 AC 523 ms
44,168 KB
testcase_08 AC 529 ms
44,476 KB
testcase_09 AC 527 ms
44,216 KB
testcase_10 AC 522 ms
44,400 KB
testcase_11 AC 516 ms
44,416 KB
testcase_12 AC 527 ms
44,292 KB
testcase_13 AC 533 ms
44,592 KB
testcase_14 AC 522 ms
44,216 KB
testcase_15 AC 534 ms
44,556 KB
testcase_16 AC 521 ms
44,280 KB
testcase_17 AC 679 ms
67,500 KB
testcase_18 AC 617 ms
61,948 KB
testcase_19 AC 662 ms
66,224 KB
testcase_20 AC 626 ms
62,388 KB
testcase_21 AC 623 ms
63,960 KB
testcase_22 AC 630 ms
63,284 KB
testcase_23 AC 664 ms
66,056 KB
testcase_24 AC 706 ms
70,172 KB
testcase_25 AC 684 ms
70,932 KB
testcase_26 AC 643 ms
66,448 KB
testcase_27 AC 635 ms
61,968 KB
testcase_28 AC 655 ms
66,316 KB
testcase_29 AC 650 ms
65,364 KB
testcase_30 AC 627 ms
63,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")


l,m,n = list(map(int, input().split()))
aa = list(map(int, input().split()))
bb = list(map(int, input().split()))
q = int(input())
a = [0]*n
b = [0]*n
for i in range(l):
    a[aa[i]-1] = 1
for i in range(m):
    b[bb[i]-1] = 1
b = b[::-1]
# FFT
import numpy as np
M = 998244353
a = np.array(a, dtype=np.int64)
b = np.array(b, dtype=np.int64)
def fft(a,b):
    l = 1
    while 2 * l < len(a) + len(b) - 1:
        l *= 2
    l *= 2
    c = np.fft.irfft((np.fft.rfft(a,l))*(np.fft.rfft(b,l)),l)
    c = np.rint(c).astype(np.int64)
    return c
def fft_large(a,b):
    d = 30000
    a1, a2 = np.divmod(a,d)
    b1, b2 = np.divmod(b,d)
    aa = fft(a1,b1)
    bb = fft(a2,b2)
    cc = (fft(a1+a2, b1+b2) - (aa+bb))
    h = (((aa*d))*d  + cc*d + bb)
    return h
c = fft(a,b)
write("\n".join(map(str, c[n-1:n-1+q].tolist())))
0