結果

問題 No.206 数の積集合を求めるクエリ
ユーザー tcltktcltk
提出日時 2021-01-15 02:17:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 916 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 209,680 KB
最終ジャッジ日時 2024-11-24 22:40:26
合計ジャッジ時間 54,240 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
209,680 KB
testcase_01 AC 126 ms
206,144 KB
testcase_02 AC 125 ms
191,696 KB
testcase_03 AC 126 ms
96,272 KB
testcase_04 AC 127 ms
89,324 KB
testcase_05 AC 128 ms
89,036 KB
testcase_06 AC 134 ms
89,872 KB
testcase_07 AC 143 ms
89,680 KB
testcase_08 AC 146 ms
90,012 KB
testcase_09 AC 151 ms
89,928 KB
testcase_10 AC 123 ms
89,088 KB
testcase_11 AC 127 ms
88,824 KB
testcase_12 AC 211 ms
90,300 KB
testcase_13 AC 177 ms
90,124 KB
testcase_14 AC 164 ms
90,312 KB
testcase_15 AC 142 ms
90,100 KB
testcase_16 AC 132 ms
89,932 KB
testcase_17 AC 249 ms
120,272 KB
testcase_18 AC 195 ms
102,008 KB
testcase_19 AC 240 ms
116,308 KB
testcase_20 AC 154 ms
104,408 KB
testcase_21 AC 197 ms
106,424 KB
testcase_22 AC 211 ms
106,832 KB
testcase_23 AC 248 ms
118,572 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 3,068 ms
99,264 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 4,740 ms
208,728 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

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

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)


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

    T = [0 for _ in range(Q)]
    for j in range(M):
        b = B[j]
        k1 = bisect.bisect_left(A, b)
        if k1 == L:
            continue
        k2 = bisect.bisect_right(A, b+(Q-1))
        for k in range(k1, k2):
            a = A[k]
            i = a - b
            T[i] += 1
    for i in range(Q):
        print(T[i])


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