結果

問題 No.206 数の積集合を求めるクエリ
ユーザー tcltktcltk
提出日時 2021-01-15 03:56:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 906 ms / 7,000 ms
コード長 836 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 95,432 KB
最終ジャッジ日時 2024-11-25 00:20:18
合計ジャッジ時間 22,505 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 458 ms
44,668 KB
testcase_01 AC 462 ms
44,796 KB
testcase_02 AC 459 ms
44,416 KB
testcase_03 AC 461 ms
45,048 KB
testcase_04 AC 467 ms
44,796 KB
testcase_05 AC 458 ms
44,800 KB
testcase_06 AC 470 ms
44,284 KB
testcase_07 AC 518 ms
44,796 KB
testcase_08 AC 459 ms
44,412 KB
testcase_09 AC 469 ms
44,640 KB
testcase_10 AC 467 ms
44,672 KB
testcase_11 AC 464 ms
44,544 KB
testcase_12 AC 473 ms
44,792 KB
testcase_13 AC 479 ms
44,412 KB
testcase_14 AC 477 ms
44,276 KB
testcase_15 AC 474 ms
45,044 KB
testcase_16 AC 470 ms
44,912 KB
testcase_17 AC 738 ms
74,016 KB
testcase_18 AC 674 ms
93,344 KB
testcase_19 AC 682 ms
72,676 KB
testcase_20 AC 627 ms
65,340 KB
testcase_21 AC 627 ms
64,652 KB
testcase_22 AC 623 ms
65,832 KB
testcase_23 AC 655 ms
73,192 KB
testcase_24 AC 878 ms
74,188 KB
testcase_25 AC 872 ms
72,880 KB
testcase_26 AC 856 ms
63,760 KB
testcase_27 AC 777 ms
62,716 KB
testcase_28 AC 906 ms
95,432 KB
testcase_29 AC 853 ms
64,528 KB
testcase_30 AC 839 ms
63,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq
import numpy as np

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """4 2 5
# 1 2 3 5
# 1 2
# 5
# """
# sys.stdin = io.StringIO(_INPUT)


def main():
    L, M, N = map(int, input().split())
    A = set(list(map(int, input().split())))
    B = set(list(map(int, input().split())))
    Q = int(input())

    f = [1 if i in A else 0 for i in range(N+1)]
    g = [1 if (N-i) in B else 0 for i in range(N+1)]
    fg = np.fft.irfft(np.fft.rfft(f, 2*N+1) * np.fft.rfft(g, 2*N+1), 2*N+1)

    for v in range(Q):
        print(round(fg[N+v]))

if __name__ == '__main__':
    main()
0