結果

問題 No.1597 Matrix Sort
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-09 22:01:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 426 ms / 1,500 ms
コード長 558 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 182,204 KB
最終ジャッジ日時 2024-07-01 16:23:23
合計ジャッジ時間 7,155 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,884 KB
testcase_01 AC 37 ms
53,664 KB
testcase_02 AC 39 ms
53,576 KB
testcase_03 AC 284 ms
166,760 KB
testcase_04 AC 302 ms
166,924 KB
testcase_05 AC 426 ms
166,880 KB
testcase_06 AC 426 ms
167,148 KB
testcase_07 AC 281 ms
166,760 KB
testcase_08 AC 261 ms
167,380 KB
testcase_09 AC 268 ms
166,948 KB
testcase_10 AC 182 ms
182,024 KB
testcase_11 AC 193 ms
167,304 KB
testcase_12 AC 110 ms
103,512 KB
testcase_13 AC 162 ms
112,260 KB
testcase_14 AC 352 ms
166,936 KB
testcase_15 AC 127 ms
103,440 KB
testcase_16 AC 157 ms
112,340 KB
testcase_17 AC 253 ms
167,076 KB
testcase_18 AC 328 ms
166,756 KB
testcase_19 AC 251 ms
166,896 KB
testcase_20 AC 222 ms
166,884 KB
testcase_21 AC 221 ms
166,872 KB
testcase_22 AC 219 ms
167,004 KB
testcase_23 AC 194 ms
182,204 KB
testcase_24 AC 76 ms
99,436 KB
testcase_25 AC 73 ms
98,952 KB
testcase_26 AC 37 ms
52,284 KB
testcase_27 AC 36 ms
52,252 KB
testcase_28 AC 36 ms
52,824 KB
testcase_29 AC 97 ms
136,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import count


n,k,p = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
sA = [a%p for a in A]
cum = [0]*p
for b in B:
    cum[b%p] += 1
for i in range(p-1):
    cum[i+1] += cum[i]

def count(x):
    ans = 0
    for a in sA:
        ans += cum[(-a%p+x)%p]
        if (-a)%p != 0:
            ans -= cum[-a%p-1]
        if (-a%p+x)%p < -a%p:
            ans += cum[-1]

    return ans
l = -1
r = p-1
while r > l+1:
    m = (r+l)//2
    if count(m) < k:
        l = m
    else:
        r = m
print(r)
0