結果

問題 No.1597 Matrix Sort
ユーザー penguinmanpenguinman
提出日時 2021-05-05 02:14:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 544 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 182,140 KB
最終ジャッジ日時 2024-07-01 14:14:42
合計ジャッジ時間 6,447 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,520 KB
testcase_01 AC 38 ms
52,276 KB
testcase_02 AC 38 ms
53,496 KB
testcase_03 WA -
testcase_04 AC 266 ms
181,964 KB
testcase_05 AC 296 ms
181,952 KB
testcase_06 AC 304 ms
182,004 KB
testcase_07 AC 257 ms
181,952 KB
testcase_08 AC 249 ms
166,884 KB
testcase_09 AC 251 ms
166,944 KB
testcase_10 AC 168 ms
181,016 KB
testcase_11 AC 174 ms
167,192 KB
testcase_12 AC 106 ms
102,832 KB
testcase_13 AC 144 ms
111,612 KB
testcase_14 AC 297 ms
167,320 KB
testcase_15 AC 113 ms
102,808 KB
testcase_16 AC 141 ms
111,408 KB
testcase_17 AC 215 ms
181,980 KB
testcase_18 AC 262 ms
182,056 KB
testcase_19 AC 216 ms
181,896 KB
testcase_20 AC 196 ms
181,800 KB
testcase_21 AC 196 ms
182,140 KB
testcase_22 AC 189 ms
181,872 KB
testcase_23 AC 181 ms
181,272 KB
testcase_24 AC 74 ms
98,176 KB
testcase_25 AC 76 ms
97,624 KB
testcase_26 WA -
testcase_27 AC 38 ms
52,708 KB
testcase_28 AC 39 ms
52,592 KB
testcase_29 AC 99 ms
136,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K,P = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
imos = [0]*(P+1)
for i in range(N):
    imos[B[i]+1] += 1
for i in range(P):
    imos[i+1] += imos[i]
left = 0
right = P
while left+1 < right:
    mid = (left+right)//2
    cnt = 0
    for i in range(N):
        l = -A[i]
        r = mid-A[i]
        if r < 0:
            cnt += imos[r+P+1]-imos[l+P]
        else:
            cnt += imos[r+1]+imos[P]-imos[l+P]
    if cnt >= K:
        right = mid
    else:
        left = mid
print(right)
0