結果

問題 No.206 数の積集合を求めるクエリ
ユーザー rpy3cpprpy3cpp
提出日時 2015-05-09 00:42:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 612 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,288 KB
最終ジャッジ日時 2024-07-05 20:53:51
合計ジャッジ時間 10,841 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 63 ms
10,752 KB
testcase_07 AC 78 ms
10,880 KB
testcase_08 AC 123 ms
11,008 KB
testcase_09 AC 107 ms
10,880 KB
testcase_10 AC 25 ms
10,624 KB
testcase_11 AC 25 ms
10,752 KB
testcase_12 AC 674 ms
11,136 KB
testcase_13 AC 359 ms
11,008 KB
testcase_14 AC 254 ms
11,008 KB
testcase_15 AC 29 ms
11,008 KB
testcase_16 AC 28 ms
11,008 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def solve(L, M, N, A, B, Q):
    A.sort()
    B.sort()
    counter = [0] * Q
    for bi in B:
        for ai in A:
            dif = ai - bi
            if dif < 0:
                continue
            if dif >= Q:
                break
            counter[dif] += 1
    return counter

if __name__ == '__main__':
    L, M, N, A, B, Q = read_data()
    counter = solve(L, M, N, A, B, Q)
    for c in counter:
        print(c)
0