結果

問題 No.1767 BLUE to RED
ユーザー puznekopuzneko
提出日時 2022-01-08 01:26:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 539 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 81,896 KB
実行使用メモリ 122,192 KB
最終ジャッジ日時 2024-11-14 09:21:50
合計ジャッジ時間 6,909 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,188 KB
testcase_01 AC 36 ms
52,832 KB
testcase_02 AC 38 ms
52,876 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 38 ms
52,900 KB
testcase_05 AC 39 ms
53,448 KB
testcase_06 AC 37 ms
53,108 KB
testcase_07 AC 42 ms
59,972 KB
testcase_08 AC 44 ms
60,472 KB
testcase_09 AC 174 ms
108,760 KB
testcase_10 AC 205 ms
117,124 KB
testcase_11 AC 188 ms
115,600 KB
testcase_12 AC 174 ms
108,304 KB
testcase_13 AC 219 ms
121,128 KB
testcase_14 AC 254 ms
121,824 KB
testcase_15 AC 254 ms
122,192 KB
testcase_16 AC 253 ms
121,696 KB
testcase_17 AC 253 ms
121,440 KB
testcase_18 AC 252 ms
121,752 KB
testcase_19 AC 257 ms
121,588 KB
testcase_20 AC 255 ms
121,600 KB
testcase_21 AC 253 ms
121,840 KB
testcase_22 AC 254 ms
121,964 KB
testcase_23 AC 256 ms
122,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
n, m = [int(x) for x in stdin.readline().rstrip().split()]
a = [int(x) for x in stdin.readline().rstrip().split()]
b = [int(x) for x in stdin.readline().rstrip().split()]

ab = []
for x in a:
    ab.append((x,0))
for x in b:
    ab.append((x,1))

ab.append((-10**10,0))
ab.append((10**10,0))
ab.sort()

ans = 2*10**10 - 1 - n

l = len(ab)
rangemax = 0
for i in range(1,l):
    rangemax = max(rangemax,ab[i][0]-ab[i-1][0])
    if ab[i][1] == 0:
        ans -= rangemax - 1
        rangemax = 0

print("{}".format(ans))
0