結果

問題 No.1597 Matrix Sort
ユーザー googol_S0googol_S0
提出日時 2021-07-09 22:01:24
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 408 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 103,680 KB
最終ジャッジ日時 2024-07-01 16:25:11
合計ジャッジ時間 32,255 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 46 ms
58,112 KB
testcase_02 AC 44 ms
57,472 KB
testcase_03 AC 1,340 ms
100,908 KB
testcase_04 AC 1,440 ms
101,644 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 1,158 ms
101,376 KB
testcase_09 TLE -
testcase_10 AC 1,212 ms
102,784 KB
testcase_11 AC 1,011 ms
100,992 KB
testcase_12 AC 880 ms
102,900 KB
testcase_13 AC 1,224 ms
103,680 KB
testcase_14 TLE -
testcase_15 AC 876 ms
103,148 KB
testcase_16 AC 1,230 ms
103,312 KB
testcase_17 TLE -
testcase_18 AC 1,419 ms
101,120 KB
testcase_19 AC 1,460 ms
101,288 KB
testcase_20 TLE -
testcase_21 AC 1,454 ms
101,164 KB
testcase_22 AC 1,426 ms
100,736 KB
testcase_23 TLE -
testcase_24 AC 209 ms
100,992 KB
testcase_25 AC 196 ms
100,124 KB
testcase_26 AC 39 ms
52,224 KB
testcase_27 AC 38 ms
52,480 KB
testcase_28 AC 40 ms
52,224 KB
testcase_29 AC 47 ms
60,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
N,K,P=map(int,input().split())
A=list(map(int,input().split()))
A.sort()
B=list(map(int,input().split()))
B.sort()
L,R=0,P
while L<R:
  M=(L+R)>>1
  C=0
  for i in range(N):
    if M>=A[i]:
      C+=bisect_right(B,M-A[i])+bisect_right(B,P+M-A[i])-bisect_left(B,P-A[i])
    else:
      C+=bisect_right(B,P+M-A[i])-bisect_left(B,P-A[i])
  if C>=K:
    R=M
  else:
    L=max(L+1,M)
print(L)
0