結果

問題 No.1597 Matrix Sort
ユーザー ああいいああいい
提出日時 2022-03-15 18:51:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 336 ms / 1,500 ms
コード長 494 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 245,424 KB
最終ジャッジ日時 2024-09-22 10:56:55
合計ジャッジ時間 8,159 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,824 KB
testcase_01 AC 38 ms
59,240 KB
testcase_02 AC 38 ms
57,388 KB
testcase_03 AC 266 ms
243,672 KB
testcase_04 AC 277 ms
243,976 KB
testcase_05 AC 334 ms
243,664 KB
testcase_06 AC 336 ms
243,976 KB
testcase_07 AC 299 ms
243,840 KB
testcase_08 AC 254 ms
244,584 KB
testcase_09 AC 281 ms
245,424 KB
testcase_10 AC 219 ms
243,272 KB
testcase_11 AC 226 ms
244,676 KB
testcase_12 AC 94 ms
102,728 KB
testcase_13 AC 133 ms
119,564 KB
testcase_14 AC 305 ms
245,028 KB
testcase_15 AC 105 ms
102,608 KB
testcase_16 AC 131 ms
119,344 KB
testcase_17 AC 262 ms
244,568 KB
testcase_18 AC 293 ms
244,004 KB
testcase_19 AC 266 ms
243,980 KB
testcase_20 AC 242 ms
243,960 KB
testcase_21 AC 239 ms
244,284 KB
testcase_22 AC 239 ms
243,808 KB
testcase_23 AC 220 ms
243,856 KB
testcase_24 AC 74 ms
99,776 KB
testcase_25 AC 72 ms
98,544 KB
testcase_26 AC 36 ms
52,456 KB
testcase_27 AC 36 ms
52,616 KB
testcase_28 AC 35 ms
53,356 KB
testcase_29 AC 143 ms
214,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K,P = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))


C = P * 2
S = [0] * (C+1)
for b in B:
    S[b] += 1
for i in range(1,C+1):
    S[i] += S[i-1]

def calc(x):
    ans = 0
    for a in A:
        if a <= x:
            ans += S[x-a]
        ans += S[x+P-a] - S[P-a-1]
    return ans >= K
    
end = P-1
start = -1
while end - start > 1:
    mid = end + start >> 1
    if calc(mid):
        end = mid
    else:
        start = mid
print(end)
0