結果

問題 No.1597 Matrix Sort
ユーザー PNJPNJ
提出日時 2023-11-24 07:37:17
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 474 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 103,936 KB
最終ジャッジ日時 2024-09-26 08:31:56
合計ジャッジ時間 37,778 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 42 ms
58,880 KB
testcase_02 AC 42 ms
58,752 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 885 ms
102,912 KB
testcase_11 AC 944 ms
100,864 KB
testcase_12 AC 1,429 ms
102,656 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 849 ms
103,296 KB
testcase_16 AC 1,276 ms
103,680 KB
testcase_17 AC 1,482 ms
101,200 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1,469 ms
103,116 KB
testcase_23 TLE -
testcase_24 AC 158 ms
101,120 KB
testcase_25 AC 149 ms
100,352 KB
testcase_26 AC 35 ms
52,096 KB
testcase_27 AC 35 ms
51,968 KB
testcase_28 AC 35 ms
52,480 KB
testcase_29 AC 44 ms
59,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().strip()
import bisect
N,K,P = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
A.sort()

l = -1
r = P - 1
while r - l > 1:
  m = (l + r) // 2
  res = 0
  for b in B:
    # a + b は 0 ~ 2*P - 1. m,m+P
    c = bisect.bisect_right(A,m-b)
    res += c
    c = bisect.bisect_right(A,m+P-b) - bisect.bisect_right(A,P-1-b)
    res += c
  if res < K:
    l = m
  else:
    r = m
print(r)
0