結果

問題 No.1597 Matrix Sort
ユーザー H3PO4H3PO4
提出日時 2023-03-29 14:58:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 615 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 173,424 KB
最終ジャッジ日時 2024-09-21 07:36:42
合計ジャッジ時間 8,075 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,732 KB
testcase_01 AC 43 ms
52,772 KB
testcase_02 AC 38 ms
53,408 KB
testcase_03 WA -
testcase_04 AC 300 ms
173,244 KB
testcase_05 AC 357 ms
173,384 KB
testcase_06 AC 359 ms
173,424 KB
testcase_07 AC 276 ms
170,164 KB
testcase_08 AC 280 ms
170,036 KB
testcase_09 AC 266 ms
170,348 KB
testcase_10 AC 170 ms
169,712 KB
testcase_11 AC 187 ms
172,608 KB
testcase_12 AC 133 ms
94,012 KB
testcase_13 AC 188 ms
103,212 KB
testcase_14 AC 340 ms
173,200 KB
testcase_15 AC 137 ms
94,924 KB
testcase_16 AC 169 ms
102,668 KB
testcase_17 AC 260 ms
173,328 KB
testcase_18 AC 310 ms
173,356 KB
testcase_19 AC 257 ms
173,236 KB
testcase_20 AC 254 ms
173,360 KB
testcase_21 AC 232 ms
173,108 KB
testcase_22 AC 223 ms
173,140 KB
testcase_23 AC 212 ms
173,380 KB
testcase_24 AC 96 ms
99,464 KB
testcase_25 AC 89 ms
99,620 KB
testcase_26 WA -
testcase_27 AC 39 ms
52,484 KB
testcase_28 AC 38 ms
53,224 KB
testcase_29 AC 95 ms
135,876 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 = 0, P
while r - l > 1:
    m = (r + l) // 2
    if lower(m) >= K:
        r = m
    else:
        l = m
print(l + 1)
0