結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 43 ms
58,752 KB
testcase_02 AC 40 ms
58,496 KB
testcase_03 AC 1,309 ms
101,160 KB
testcase_04 AC 1,440 ms
101,232 KB
testcase_05 TLE -
testcase_06 AC 1,428 ms
101,088 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 1,498 ms
100,984 KB
testcase_10 AC 893 ms
102,656 KB
testcase_11 AC 965 ms
100,736 KB
testcase_12 AC 829 ms
103,424 KB
testcase_13 TLE -
testcase_14 AC 1,420 ms
100,772 KB
testcase_15 AC 883 ms
103,552 KB
testcase_16 AC 1,189 ms
103,848 KB
testcase_17 AC 1,294 ms
100,920 KB
testcase_18 AC 1,480 ms
100,800 KB
testcase_19 AC 1,442 ms
100,716 KB
testcase_20 AC 1,402 ms
101,184 KB
testcase_21 AC 1,482 ms
100,740 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 157 ms
100,608 KB
testcase_25 AC 154 ms
100,612 KB
testcase_26 AC 36 ms
51,968 KB
testcase_27 AC 34 ms
52,480 KB
testcase_28 AC 36 ms
52,096 KB
testcase_29 AC 44 ms
59,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N,K,P = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
A.sort()
B.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