結果

問題 No.1767 BLUE to RED
ユーザー hir355hir355
提出日時 2021-11-26 23:06:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 138,460 KB
最終ジャッジ日時 2024-06-29 18:30:04
合計ジャッジ時間 5,845 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 39 ms
57,856 KB
testcase_05 AC 44 ms
60,288 KB
testcase_06 AC 41 ms
58,112 KB
testcase_07 AC 51 ms
64,256 KB
testcase_08 AC 56 ms
65,920 KB
testcase_09 AC 177 ms
99,692 KB
testcase_10 AC 219 ms
102,736 KB
testcase_11 AC 184 ms
106,592 KB
testcase_12 AC 177 ms
99,772 KB
testcase_13 AC 250 ms
123,660 KB
testcase_14 AC 274 ms
138,076 KB
testcase_15 AC 268 ms
138,448 KB
testcase_16 AC 276 ms
138,204 KB
testcase_17 AC 269 ms
138,208 KB
testcase_18 AC 272 ms
138,336 KB
testcase_19 AC 270 ms
138,392 KB
testcase_20 AC 269 ms
138,460 KB
testcase_21 AC 269 ms
138,092 KB
testcase_22 AC 268 ms
138,312 KB
testcase_23 AC 274 ms
138,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
m, n = map(int, input().split())
b = list(map(int, input().split()))
a = list(map(int, input().split()))
c = a + b
c.sort()
ans = max(c) - min(c) + 1 - m
for i in range(m - 1):
    l = bisect_left(c, b[i])
    r = bisect_left(c, b[i + 1])
    res = 0
    for j in range(l, r):
        res = max(res, c[j + 1] - c[j] - 1)
    ans -= res
print(ans)
0