結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 259 ms
182,064 KB
testcase_04 AC 271 ms
181,600 KB
testcase_05 AC 305 ms
181,924 KB
testcase_06 AC 309 ms
181,812 KB
testcase_07 WA -
testcase_08 AC 246 ms
167,272 KB
testcase_09 AC 243 ms
166,660 KB
testcase_10 AC 174 ms
181,672 KB
testcase_11 AC 181 ms
166,924 KB
testcase_12 AC 106 ms
102,468 KB
testcase_13 AC 147 ms
111,720 KB
testcase_14 AC 284 ms
166,908 KB
testcase_15 AC 116 ms
102,584 KB
testcase_16 AC 139 ms
111,024 KB
testcase_17 AC 221 ms
182,096 KB
testcase_18 AC 270 ms
181,932 KB
testcase_19 AC 224 ms
181,908 KB
testcase_20 AC 201 ms
181,748 KB
testcase_21 AC 199 ms
182,088 KB
testcase_22 AC 216 ms
182,184 KB
testcase_23 AC 179 ms
181,692 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 38 ms
51,968 KB
testcase_27 AC 40 ms
51,968 KB
testcase_28 AC 38 ms
52,096 KB
testcase_29 AC 99 ms
135,596 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 = -1
right = P-2
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