結果

問題 No.1597 Matrix Sort
ユーザー H3PO4H3PO4
提出日時 2023-03-30 09:26:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 389 ms / 1,500 ms
コード長 612 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 173,476 KB
最終ジャッジ日時 2024-09-21 21:01:16
合計ジャッジ時間 8,758 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 309 ms
170,676 KB
testcase_04 AC 340 ms
173,232 KB
testcase_05 AC 382 ms
173,440 KB
testcase_06 AC 389 ms
173,348 KB
testcase_07 AC 311 ms
170,020 KB
testcase_08 AC 285 ms
170,052 KB
testcase_09 AC 298 ms
169,996 KB
testcase_10 AC 198 ms
170,060 KB
testcase_11 AC 214 ms
172,816 KB
testcase_12 AC 130 ms
94,208 KB
testcase_13 AC 170 ms
103,108 KB
testcase_14 AC 365 ms
173,224 KB
testcase_15 AC 139 ms
94,976 KB
testcase_16 AC 168 ms
102,792 KB
testcase_17 AC 289 ms
173,476 KB
testcase_18 AC 360 ms
173,228 KB
testcase_19 AC 309 ms
173,220 KB
testcase_20 AC 261 ms
173,308 KB
testcase_21 AC 258 ms
173,252 KB
testcase_22 AC 249 ms
173,392 KB
testcase_23 AC 220 ms
170,400 KB
testcase_24 AC 100 ms
99,200 KB
testcase_25 AC 92 ms
98,584 KB
testcase_26 AC 38 ms
51,968 KB
testcase_27 AC 38 ms
52,096 KB
testcase_28 AC 37 ms
51,968 KB
testcase_29 AC 117 ms
135,680 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:
        b1 = B_counter[x - a] if x - a >= 0 else 0
        b2 = B_counter[P + x - a] if P + x - a < P else N
        assert 0 <= P - a - 1 < P
        ct += b1 + b2 - B_counter[P - a - 1]
    return ct


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