結果

問題 No.1767 BLUE to RED
ユーザー Eki1009Eki1009
提出日時 2021-11-26 22:56:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 142,028 KB
最終ジャッジ日時 2024-06-29 18:23:05
合計ジャッジ時間 4,956 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 38 ms
52,864 KB
testcase_06 AC 37 ms
52,736 KB
testcase_07 AC 48 ms
62,080 KB
testcase_08 AC 49 ms
61,952 KB
testcase_09 AC 147 ms
100,720 KB
testcase_10 AC 180 ms
105,408 KB
testcase_11 AC 140 ms
101,152 KB
testcase_12 AC 144 ms
100,680 KB
testcase_13 AC 179 ms
108,672 KB
testcase_14 AC 212 ms
141,640 KB
testcase_15 AC 210 ms
141,580 KB
testcase_16 AC 210 ms
141,388 KB
testcase_17 AC 212 ms
141,592 KB
testcase_18 AC 209 ms
141,768 KB
testcase_19 AC 207 ms
141,768 KB
testcase_20 AC 207 ms
141,704 KB
testcase_21 AC 201 ms
142,028 KB
testcase_22 AC 209 ms
141,852 KB
testcase_23 AC 204 ms
141,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
A = [-10**20]+list(map(int,input().split()))+[10**20]
B = list(map(int,input().split()))
j = 0
ans = 0
for i in range(n+1):
    l,r = A[i],A[i+1]
    C = [A[i]]
    while j < m and B[j] < r:
        C.append(B[j])
        j += 1
    C.append(A[i+1])
    z = max(C[k+1]-C[k] for k in range(len(C)-1))
    ans += (C[-1]-C[0])-z
print(ans)
0