結果

問題 No.1597 Matrix Sort
ユーザー H3PO4H3PO4
提出日時 2023-03-25 15:29:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 441 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 102,756 KB
最終ジャッジ日時 2024-09-18 22:00:30
合計ジャッジ時間 13,853 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 43 ms
58,368 KB
testcase_02 AC 43 ms
58,752 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 952 ms
94,276 KB
testcase_11 AC 878 ms
94,940 KB
testcase_12 AC 1,316 ms
94,332 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 838 ms
94,720 KB
testcase_16 AC 1,216 ms
95,512 KB
testcase_17 AC 1,497 ms
95,856 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1,410 ms
95,600 KB
testcase_23 AC 1,402 ms
95,600 KB
testcase_24 AC 144 ms
98,944 KB
testcase_25 AC 121 ms
98,816 KB
testcase_26 WA -
testcase_27 AC 42 ms
52,224 KB
testcase_28 AC 35 ms
51,968 KB
testcase_29 AC 42 ms
59,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right

N, K, P = map(int, input().split())
A = tuple(int(x) % P for x in input().split())
B = sorted(int(x) % P for x in input().split())


def lower(x):
    ct = 0
    for a in A:
        ct += bisect_right(B, x - a) + bisect_right(B, P + x - a) - bisect_right(B, P - a - 1)
    return ct


l, r = 0, P
while r - l > 1:
    m = (r + l) // 2
    if lower(m) >= K:
        r = m
    else:
        l = m
print(l + 1)
0