結果

問題 No.1597 Matrix Sort
ユーザー PNJPNJ
提出日時 2023-11-24 07:49:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 330 ms / 1,500 ms
コード長 522 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 181,632 KB
最終ジャッジ日時 2024-09-26 08:32:05
合計ジャッジ時間 7,215 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 280 ms
166,568 KB
testcase_04 AC 330 ms
166,836 KB
testcase_05 AC 308 ms
166,568 KB
testcase_06 AC 300 ms
166,820 KB
testcase_07 AC 327 ms
166,564 KB
testcase_08 AC 263 ms
166,540 KB
testcase_09 AC 267 ms
166,924 KB
testcase_10 AC 210 ms
180,992 KB
testcase_11 AC 211 ms
166,800 KB
testcase_12 AC 111 ms
102,272 KB
testcase_13 AC 153 ms
111,616 KB
testcase_14 AC 318 ms
166,708 KB
testcase_15 AC 114 ms
102,656 KB
testcase_16 AC 148 ms
111,232 KB
testcase_17 AC 265 ms
166,864 KB
testcase_18 AC 298 ms
166,944 KB
testcase_19 AC 274 ms
166,816 KB
testcase_20 AC 245 ms
166,864 KB
testcase_21 AC 245 ms
166,908 KB
testcase_22 AC 244 ms
165,768 KB
testcase_23 AC 217 ms
181,632 KB
testcase_24 AC 85 ms
98,304 KB
testcase_25 AC 81 ms
97,024 KB
testcase_26 AC 38 ms
52,224 KB
testcase_27 AC 39 ms
51,840 KB
testcase_28 AC 38 ms
51,712 KB
testcase_29 AC 152 ms
136,576 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()))

R = [0 for i in range(P)]
for a in A:
  R[a] += 1
for i in range(P-1):
  R[i+1] += R[i]

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
    if m - b >= 0:
      res += R[m-b]
    x = min(P + m - b,P - 1)
    res += (R[x] - R[P-1-b])
  if res < K:
    l = m
  else:
    r = m
print(r)
0