結果

問題 No.1597 Matrix Sort
ユーザー detteiuudetteiuu
提出日時 2024-09-23 17:33:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 286 ms / 1,500 ms
コード長 623 bytes
コンパイル時間 5,978 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 182,016 KB
最終ジャッジ日時 2024-09-23 17:44:39
合計ジャッジ時間 21,715 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
52,552 KB
testcase_01 AC 36 ms
52,960 KB
testcase_02 AC 35 ms
52,876 KB
testcase_03 AC 231 ms
181,872 KB
testcase_04 AC 237 ms
181,780 KB
testcase_05 AC 286 ms
181,920 KB
testcase_06 AC 253 ms
181,872 KB
testcase_07 AC 212 ms
181,916 KB
testcase_08 AC 210 ms
166,820 KB
testcase_09 AC 207 ms
166,680 KB
testcase_10 AC 162 ms
180,916 KB
testcase_11 AC 181 ms
167,052 KB
testcase_12 AC 102 ms
102,428 KB
testcase_13 AC 143 ms
111,312 KB
testcase_14 AC 255 ms
166,732 KB
testcase_15 AC 130 ms
102,488 KB
testcase_16 AC 133 ms
111,416 KB
testcase_17 AC 208 ms
166,880 KB
testcase_18 AC 253 ms
181,736 KB
testcase_19 AC 206 ms
181,604 KB
testcase_20 AC 194 ms
181,992 KB
testcase_21 AC 197 ms
181,628 KB
testcase_22 AC 193 ms
182,016 KB
testcase_23 AC 180 ms
181,228 KB
testcase_24 AC 74 ms
98,424 KB
testcase_25 AC 70 ms
97,720 KB
testcase_26 AC 34 ms
52,836 KB
testcase_27 AC 34 ms
52,924 KB
testcase_28 AC 35 ms
53,004 KB
testcase_29 AC 116 ms
136,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def func(n):
    SUM = 0
    for i in range(N):
        if A[i] <= n:
            SUM += cum[n-A[i]+1]
        if 1 <= A[i]:
            SUM += cum[-1]-cum[P-A[i]]
            if n < A[i]-1:
                SUM -= cum[-1]-cum[(n-A[i])%P+1]
    return SUM

cum = [0]*(P+1)
for i in range(N):
    cum[B[i]+1] += 1
for i in range(2, P+1):
    cum[i] += cum[i-1]

left = -1
right = P-1
while left+1 < right:
    mid = (left+right)//2
    if func(mid) < K:
        left = mid
    else:
        right = mid

print(right)
0