結果

問題 No.206 数の積集合を求めるクエリ
ユーザー tktk_snsntktk_snsn
提出日時 2021-04-27 20:49:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 545 ms / 7,000 ms
コード長 524 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 62,064 KB
最終ジャッジ日時 2024-07-06 15:52:31
合計ジャッジ時間 17,084 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 435 ms
44,232 KB
testcase_01 AC 430 ms
44,228 KB
testcase_02 AC 422 ms
44,352 KB
testcase_03 AC 448 ms
43,836 KB
testcase_04 AC 433 ms
44,092 KB
testcase_05 AC 421 ms
43,972 KB
testcase_06 AC 421 ms
44,488 KB
testcase_07 AC 426 ms
44,480 KB
testcase_08 AC 428 ms
44,612 KB
testcase_09 AC 433 ms
44,356 KB
testcase_10 AC 429 ms
44,096 KB
testcase_11 AC 435 ms
43,832 KB
testcase_12 AC 438 ms
44,348 KB
testcase_13 AC 429 ms
44,092 KB
testcase_14 AC 423 ms
44,152 KB
testcase_15 AC 436 ms
44,216 KB
testcase_16 AC 427 ms
44,220 KB
testcase_17 AC 485 ms
61,096 KB
testcase_18 AC 471 ms
60,380 KB
testcase_19 AC 483 ms
61,112 KB
testcase_20 AC 467 ms
60,548 KB
testcase_21 AC 481 ms
60,528 KB
testcase_22 AC 478 ms
62,064 KB
testcase_23 AC 489 ms
60,592 KB
testcase_24 AC 545 ms
60,204 KB
testcase_25 AC 533 ms
61,636 KB
testcase_26 AC 516 ms
60,504 KB
testcase_27 AC 505 ms
60,748 KB
testcase_28 AC 537 ms
61,060 KB
testcase_29 AC 521 ms
60,908 KB
testcase_30 AC 510 ms
60,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
fft = np.fft.rfft
ifft = np.fft.irfft

L, M, N = map(int, input().split())
A = np.array(input().split(), dtype=np.int32)
B = np.array(input().split(), dtype=np.int32)
Q = int(input())

Fa = np.zeros(N+1, dtype=np.int32)
Fb = np.zeros(N+1, dtype=np.int32)
Fa[A] = 1
Fb[B] = 1

sz = len(Fa) + len(Fb) - 1
fft_len = 1 << (sz - 1).bit_length()
Ca = fft(Fa[::-1], fft_len)
Cb = fft(Fb, fft_len)
F = ifft(Ca * Cb, fft_len)
F = np.rint(F).astype(np.int32)
ans = F[N-Q+1:N+1].tolist()
print(*ans[::-1], sep="\n")
0