結果

問題 No.1597 Matrix Sort
ユーザー H3PO4H3PO4
提出日時 2023-03-29 14:31:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 602 bytes
コンパイル時間 871 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 174,032 KB
最終ジャッジ日時 2024-09-21 07:19:51
合計ジャッジ時間 8,342 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,276 KB
testcase_01 AC 40 ms
53,000 KB
testcase_02 AC 38 ms
53,740 KB
testcase_03 WA -
testcase_04 AC 299 ms
173,760 KB
testcase_05 AC 351 ms
173,732 KB
testcase_06 AC 351 ms
173,368 KB
testcase_07 AC 270 ms
170,584 KB
testcase_08 AC 262 ms
170,360 KB
testcase_09 AC 264 ms
170,168 KB
testcase_10 AC 170 ms
169,700 KB
testcase_11 AC 186 ms
172,864 KB
testcase_12 AC 130 ms
94,356 KB
testcase_13 AC 185 ms
103,164 KB
testcase_14 AC 332 ms
173,372 KB
testcase_15 AC 138 ms
95,368 KB
testcase_16 AC 167 ms
103,548 KB
testcase_17 AC 265 ms
173,540 KB
testcase_18 WA -
testcase_19 AC 264 ms
173,320 KB
testcase_20 WA -
testcase_21 AC 232 ms
173,652 KB
testcase_22 AC 218 ms
173,540 KB
testcase_23 WA -
testcase_24 AC 93 ms
99,428 KB
testcase_25 AC 86 ms
99,952 KB
testcase_26 WA -
testcase_27 AC 38 ms
52,332 KB
testcase_28 AC 38 ms
52,004 KB
testcase_29 AC 95 ms
136,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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())

B_counter = [0] * P
for b in B:
    B_counter[b] += 1
for i in range(1, P):
    B_counter[i] += B_counter[i - 1]


def lower(x):
    ct = 0
    for a in A:
        i1 = x - a
        if i1 < 0: i1 = 0
        i2 = P + x - a
        if i2 >= P: i2 = P - 1
        
        ct += B_counter[i1] + B_counter[i2] - B_counter[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