結果
問題 | No.1597 Matrix Sort |
ユーザー | marroncastle |
提出日時 | 2021-07-09 22:47:37 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 524 bytes |
コンパイル時間 | 173 ms |
コンパイル使用メモリ | 82,244 KB |
実行使用メモリ | 105,600 KB |
最終ジャッジ日時 | 2024-07-01 17:59:59 |
合計ジャッジ時間 | 30,343 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,224 KB |
testcase_01 | AC | 44 ms
58,496 KB |
testcase_02 | AC | 47 ms
58,368 KB |
testcase_03 | AC | 1,265 ms
102,400 KB |
testcase_04 | AC | 1,339 ms
102,272 KB |
testcase_05 | TLE | - |
testcase_06 | AC | 1,476 ms
102,276 KB |
testcase_07 | TLE | - |
testcase_08 | AC | 1,026 ms
102,016 KB |
testcase_09 | TLE | - |
testcase_10 | AC | 956 ms
104,448 KB |
testcase_11 | AC | 925 ms
101,760 KB |
testcase_12 | AC | 848 ms
104,832 KB |
testcase_13 | AC | 1,195 ms
105,344 KB |
testcase_14 | AC | 1,454 ms
102,144 KB |
testcase_15 | AC | 922 ms
105,216 KB |
testcase_16 | AC | 1,406 ms
105,376 KB |
testcase_17 | TLE | - |
testcase_18 | AC | 1,356 ms
102,076 KB |
testcase_19 | AC | 1,315 ms
102,272 KB |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | AC | 175 ms
102,912 KB |
testcase_25 | AC | 160 ms
102,272 KB |
testcase_26 | AC | 39 ms
52,480 KB |
testcase_27 | AC | 39 ms
52,224 KB |
testcase_28 | AC | 40 ms
52,608 KB |
testcase_29 | AC | 48 ms
60,544 KB |
ソースコード
N, K, P = map(int, input().split()) A = sorted(list(map(int, input().split()))) B = sorted(list(map(int, input().split()))) from bisect import * def check(target): cnt = 0 for i in range(N): t = target - A[i] if t >= 0: cnt += bisect_right(B, t) cnt += bisect_right(B, t+P) - bisect_right(B, P-1-A[i]) return cnt >= K low,high = -1,P-1 mid = (low+high)//2 while high-low>1: if check(mid): high = mid else: low = mid mid = (low+high)//2 ans = high print(ans)