結果

問題 No.2248 max(C)-min(C)
ユーザー titiatitia
提出日時 2023-03-17 22:03:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,164 ms / 3,000 ms
コード長 578 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 142,336 KB
最終ジャッジ日時 2024-05-14 14:56:22
合計ジャッジ時間 39,360 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 39 ms
52,736 KB
testcase_03 AC 44 ms
59,684 KB
testcase_04 AC 43 ms
59,648 KB
testcase_05 AC 40 ms
53,760 KB
testcase_06 AC 49 ms
62,976 KB
testcase_07 AC 49 ms
63,252 KB
testcase_08 AC 51 ms
63,952 KB
testcase_09 AC 48 ms
63,104 KB
testcase_10 AC 38 ms
53,632 KB
testcase_11 AC 48 ms
62,848 KB
testcase_12 AC 45 ms
60,160 KB
testcase_13 AC 51 ms
63,616 KB
testcase_14 AC 49 ms
63,048 KB
testcase_15 AC 50 ms
63,616 KB
testcase_16 AC 43 ms
60,032 KB
testcase_17 AC 49 ms
62,592 KB
testcase_18 AC 597 ms
107,496 KB
testcase_19 AC 99 ms
80,384 KB
testcase_20 AC 705 ms
131,268 KB
testcase_21 AC 678 ms
132,160 KB
testcase_22 AC 453 ms
103,964 KB
testcase_23 AC 303 ms
96,768 KB
testcase_24 AC 141 ms
83,584 KB
testcase_25 AC 640 ms
107,388 KB
testcase_26 AC 567 ms
106,312 KB
testcase_27 AC 624 ms
107,180 KB
testcase_28 AC 95 ms
79,236 KB
testcase_29 AC 571 ms
108,592 KB
testcase_30 AC 238 ms
93,552 KB
testcase_31 AC 669 ms
130,948 KB
testcase_32 AC 146 ms
84,992 KB
testcase_33 AC 221 ms
91,348 KB
testcase_34 AC 700 ms
131,532 KB
testcase_35 AC 716 ms
130,940 KB
testcase_36 AC 687 ms
131,188 KB
testcase_37 AC 350 ms
101,848 KB
testcase_38 AC 1,594 ms
126,176 KB
testcase_39 AC 1,587 ms
125,792 KB
testcase_40 AC 1,627 ms
126,348 KB
testcase_41 AC 1,398 ms
119,312 KB
testcase_42 AC 1,674 ms
126,220 KB
testcase_43 AC 1,441 ms
121,564 KB
testcase_44 AC 1,658 ms
125,200 KB
testcase_45 AC 1,222 ms
113,888 KB
testcase_46 AC 622 ms
98,980 KB
testcase_47 AC 1,825 ms
125,636 KB
testcase_48 AC 1,333 ms
134,804 KB
testcase_49 AC 2,103 ms
142,324 KB
testcase_50 AC 2,109 ms
142,336 KB
testcase_51 AC 2,148 ms
141,820 KB
testcase_52 AC 2,164 ms
142,076 KB
testcase_53 AC 335 ms
85,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import heappop,heappush,heapify


N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

X=[]

for i in range(N):
    Y=[A[i],B[i],(A[i]+B[i])//2]
    Y.sort()
    X.append(tuple(Y))

ANS=1<<31

MAX=0
for x in X:
    MAX=max(MAX,x[0])

X.sort()
MIN=1<<31

while X:
    k=list(heappop(X))

    ANS=min(ANS,MAX-min(MIN,k[0]))

    if MIN!=1<<31:
        break

    u=k.pop(0)

    if len(k)==0:
        MIN=min(MIN,u)
        
    else:
        heappush(X,tuple(k))
        MAX=max(MAX,k[0])

print(ANS)
0