結果

問題 No.2248 max(C)-min(C)
ユーザー ああいいああいい
提出日時 2023-03-18 20:32:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 819 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 140,480 KB
最終ジャッジ日時 2024-09-18 13:34:06
合計ジャッジ時間 53,950 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,016 KB
testcase_01 AC 39 ms
52,324 KB
testcase_02 AC 38 ms
52,552 KB
testcase_03 AC 58 ms
67,220 KB
testcase_04 AC 55 ms
66,032 KB
testcase_05 AC 46 ms
61,408 KB
testcase_06 AC 63 ms
72,748 KB
testcase_07 AC 70 ms
75,640 KB
testcase_08 AC 70 ms
76,168 KB
testcase_09 AC 68 ms
76,236 KB
testcase_10 AC 47 ms
61,612 KB
testcase_11 AC 69 ms
76,156 KB
testcase_12 AC 57 ms
68,468 KB
testcase_13 AC 62 ms
71,856 KB
testcase_14 AC 69 ms
76,460 KB
testcase_15 AC 69 ms
76,036 KB
testcase_16 AC 57 ms
67,092 KB
testcase_17 AC 66 ms
74,696 KB
testcase_18 AC 1,680 ms
123,764 KB
testcase_19 AC 224 ms
82,656 KB
testcase_20 AC 1,935 ms
140,468 KB
testcase_21 AC 1,810 ms
120,824 KB
testcase_22 AC 1,230 ms
120,288 KB
testcase_23 AC 771 ms
99,388 KB
testcase_24 AC 307 ms
87,528 KB
testcase_25 AC 1,749 ms
117,036 KB
testcase_26 AC 1,547 ms
122,428 KB
testcase_27 AC 1,770 ms
117,608 KB
testcase_28 AC 178 ms
80,076 KB
testcase_29 AC 1,613 ms
125,048 KB
testcase_30 AC 628 ms
95,928 KB
testcase_31 AC 1,970 ms
140,080 KB
testcase_32 WA -
testcase_33 AC 572 ms
94,648 KB
testcase_34 AC 1,985 ms
140,364 KB
testcase_35 AC 1,987 ms
140,480 KB
testcase_36 AC 1,946 ms
139,988 KB
testcase_37 AC 970 ms
110,412 KB
testcase_38 AC 1,869 ms
130,296 KB
testcase_39 AC 1,856 ms
130,080 KB
testcase_40 AC 1,836 ms
130,072 KB
testcase_41 AC 1,599 ms
132,404 KB
testcase_42 WA -
testcase_43 AC 1,688 ms
126,672 KB
testcase_44 AC 1,906 ms
129,608 KB
testcase_45 WA -
testcase_46 AC 747 ms
101,872 KB
testcase_47 WA -
testcase_48 AC 336 ms
130,124 KB
testcase_49 AC 1,792 ms
139,564 KB
testcase_50 AC 1,830 ms
139,628 KB
testcase_51 AC 1,802 ms
139,420 KB
testcase_52 AC 1,795 ms
139,944 KB
testcase_53 AC 292 ms
87,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

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

l = [(A[i],i) for i in range(N)] + [(B[i],i) for i in range(N)] + [(A[i] // 2 + B[i] // 2,i) for i in range(N)]
l.sort()

now = l[0][0]
ii = l[0][1]

ans = 10 ** 10
inf = 10 ** 11
t = 0
for i in range(N):
    a = A[i]
    b = B[i]
    c = (a + b) // 2
    k = inf
    for u in (a,b,c):
        if u >= now and u < k:
            k = u
    if k > t:
        t = k
ans = t - now
for n,jj in l[1:]:
    a = A[ii]
    b = B[ii]
    c = (a + b) // 2
    k = inf
    for u in (a,b,c):
        if u >= n and u < k:
            k = u
    """
    if k == inf:
        print(ans)
        exit()
    """
    if k > t:
        t = k
    if ii == jj:pass
    elif t - n < ans:
        ans = t - n
    now = n
    ii = jj
print(ans)
0