結果

問題 No.1597 Matrix Sort
ユーザー IgrmiIgrmi
提出日時 2021-07-09 23:15:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 257 ms / 1,500 ms
コード長 572 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 105,300 KB
最終ジャッジ日時 2024-07-01 18:17:06
合計ジャッジ時間 6,408 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 249 ms
102,336 KB
testcase_04 AC 251 ms
102,216 KB
testcase_05 AC 257 ms
102,136 KB
testcase_06 AC 250 ms
102,304 KB
testcase_07 AC 246 ms
102,144 KB
testcase_08 AC 192 ms
102,188 KB
testcase_09 AC 201 ms
102,128 KB
testcase_10 AC 178 ms
104,704 KB
testcase_11 AC 148 ms
101,064 KB
testcase_12 AC 196 ms
104,748 KB
testcase_13 AC 237 ms
105,300 KB
testcase_14 AC 248 ms
101,972 KB
testcase_15 AC 166 ms
105,132 KB
testcase_16 AC 206 ms
104,528 KB
testcase_17 AC 212 ms
101,768 KB
testcase_18 AC 257 ms
101,680 KB
testcase_19 AC 219 ms
102,016 KB
testcase_20 AC 213 ms
101,836 KB
testcase_21 AC 198 ms
102,072 KB
testcase_22 AC 187 ms
101,668 KB
testcase_23 AC 212 ms
104,864 KB
testcase_24 AC 105 ms
102,384 KB
testcase_25 AC 85 ms
99,660 KB
testcase_26 AC 39 ms
51,968 KB
testcase_27 AC 39 ms
51,968 KB
testcase_28 AC 40 ms
52,352 KB
testcase_29 AC 40 ms
52,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K, P = map(int, input().split())
A = sorted(list(map(int, input().split())), reverse = True)
B = sorted(list(map(int, input().split())))
LTP = 0  # less than P
j = 0
for i in range(N):
    while j < N and A[i] + B[j] < P: j += 1
    LTP += j

L = 0
R = P - 1
while L != R:
    M = (L + R) // 2
    Count = -LTP
    j = 0
    for i in range(N):
        while j < N and A[i] + B[j] <= M: j += 1
        Count += j
    j = 0
    for i in range(N):
        while j < N and A[i] + B[j] <= M + P: j += 1
        Count += j
    if Count < K: L = M + 1
    else: R = M
print(L)
0