結果

問題 No.1597 Matrix Sort
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-07-09 23:48:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,438 ms / 1,500 ms
コード長 806 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 102,656 KB
最終ジャッジ日時 2024-07-01 18:45:09
合計ジャッジ時間 27,830 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,456 KB
testcase_01 AC 46 ms
52,608 KB
testcase_02 AC 42 ms
52,608 KB
testcase_03 AC 1,361 ms
99,328 KB
testcase_04 AC 1,427 ms
99,200 KB
testcase_05 AC 1,384 ms
98,560 KB
testcase_06 AC 1,379 ms
98,816 KB
testcase_07 AC 1,369 ms
98,816 KB
testcase_08 AC 1,438 ms
98,816 KB
testcase_09 AC 1,142 ms
99,200 KB
testcase_10 AC 892 ms
101,376 KB
testcase_11 AC 748 ms
98,816 KB
testcase_12 AC 917 ms
102,656 KB
testcase_13 AC 1,207 ms
101,888 KB
testcase_14 AC 1,359 ms
99,200 KB
testcase_15 AC 827 ms
102,656 KB
testcase_16 AC 1,152 ms
102,304 KB
testcase_17 AC 1,348 ms
99,456 KB
testcase_18 AC 1,354 ms
98,560 KB
testcase_19 AC 1,331 ms
98,944 KB
testcase_20 AC 1,320 ms
98,560 KB
testcase_21 AC 1,319 ms
99,244 KB
testcase_22 AC 1,339 ms
101,248 KB
testcase_23 AC 1,177 ms
101,632 KB
testcase_24 AC 175 ms
100,608 KB
testcase_25 AC 124 ms
99,840 KB
testcase_26 AC 41 ms
52,224 KB
testcase_27 AC 40 ms
51,584 KB
testcase_28 AC 40 ms
52,220 KB
testcase_29 AC 51 ms
59,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
from sys import stdin
import sys

N,K,P = map(int,stdin.readline().split())

A = list(map(int,stdin.readline().split()))
B = list(map(int,stdin.readline().split()))

for i in range(N):
    A[i] %= P
    B[i] %= P

A.sort()
B.sort()

#print (A,B,file=sys.stderr)

l = -1
r = P-1

while r-l != 1:

    MID = (l+r)//2

    ans = 0

    for i in range(N):
        
        ZR = (P - A[i]) % P
        ZIND = bisect.bisect_left(B,ZR)

        MR = (MID-A[i]) % P
        MIND = bisect.bisect_right(B,MR)

        if ZIND == MIND or (ZIND,MIND) in ( (0,N),(N,0) ):
            if (A[0]+B[0]) % P <= MID:
                ans += N
            else:
                ans += 0
        else:
            ans += (MIND-ZIND) % N

    if ans >= K:
        r = MID
    else:
        l = MID

    

print (r)
0