結果

問題 No.2248 max(C)-min(C)
ユーザー titiatitia
提出日時 2023-03-17 22:00:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,930 ms / 3,000 ms
コード長 544 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 143,480 KB
最終ジャッジ日時 2024-09-18 10:57:13
合計ジャッジ時間 74,752 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,252 KB
testcase_01 AC 35 ms
52,340 KB
testcase_02 AC 35 ms
53,288 KB
testcase_03 AC 85 ms
76,316 KB
testcase_04 AC 68 ms
73,260 KB
testcase_05 AC 57 ms
68,048 KB
testcase_06 AC 97 ms
76,840 KB
testcase_07 AC 104 ms
76,572 KB
testcase_08 AC 101 ms
76,748 KB
testcase_09 AC 103 ms
76,668 KB
testcase_10 AC 56 ms
67,628 KB
testcase_11 AC 107 ms
76,676 KB
testcase_12 AC 88 ms
76,432 KB
testcase_13 AC 98 ms
76,248 KB
testcase_14 AC 105 ms
77,140 KB
testcase_15 AC 109 ms
76,824 KB
testcase_16 AC 85 ms
76,428 KB
testcase_17 AC 108 ms
76,712 KB
testcase_18 AC 2,269 ms
128,616 KB
testcase_19 AC 264 ms
82,584 KB
testcase_20 AC 2,637 ms
142,644 KB
testcase_21 AC 2,553 ms
141,040 KB
testcase_22 AC 1,630 ms
115,376 KB
testcase_23 AC 1,010 ms
105,844 KB
testcase_24 AC 435 ms
84,804 KB
testcase_25 AC 2,460 ms
128,456 KB
testcase_26 AC 2,067 ms
124,248 KB
testcase_27 AC 2,409 ms
128,740 KB
testcase_28 AC 250 ms
81,264 KB
testcase_29 AC 2,164 ms
126,136 KB
testcase_30 AC 808 ms
94,788 KB
testcase_31 AC 2,696 ms
142,284 KB
testcase_32 AC 446 ms
86,836 KB
testcase_33 AC 734 ms
92,908 KB
testcase_34 AC 2,930 ms
142,080 KB
testcase_35 AC 2,875 ms
143,232 KB
testcase_36 AC 2,870 ms
141,948 KB
testcase_37 AC 1,272 ms
111,036 KB
testcase_38 AC 2,734 ms
137,032 KB
testcase_39 AC 2,798 ms
136,212 KB
testcase_40 AC 2,723 ms
136,848 KB
testcase_41 AC 2,226 ms
127,640 KB
testcase_42 AC 2,728 ms
137,740 KB
testcase_43 AC 2,361 ms
130,280 KB
testcase_44 AC 2,741 ms
135,940 KB
testcase_45 AC 2,085 ms
122,140 KB
testcase_46 AC 1,021 ms
99,752 KB
testcase_47 AC 2,738 ms
136,204 KB
testcase_48 AC 1,630 ms
136,564 KB
testcase_49 AC 2,453 ms
143,480 KB
testcase_50 AC 2,495 ms
143,224 KB
testcase_51 AC 2,453 ms
143,100 KB
testcase_52 AC 2,499 ms
143,360 KB
testcase_53 AC 410 ms
86,784 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]))

    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