結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 58 ms
67,200 KB
testcase_04 AC 54 ms
64,640 KB
testcase_05 AC 50 ms
61,312 KB
testcase_06 AC 68 ms
72,320 KB
testcase_07 AC 77 ms
76,160 KB
testcase_08 AC 72 ms
76,160 KB
testcase_09 AC 72 ms
76,160 KB
testcase_10 AC 49 ms
61,568 KB
testcase_11 AC 74 ms
76,148 KB
testcase_12 AC 62 ms
67,968 KB
testcase_13 AC 64 ms
70,784 KB
testcase_14 AC 75 ms
75,648 KB
testcase_15 AC 75 ms
75,904 KB
testcase_16 AC 58 ms
67,456 KB
testcase_17 AC 70 ms
73,856 KB
testcase_18 AC 1,696 ms
123,832 KB
testcase_19 AC 228 ms
83,236 KB
testcase_20 AC 1,963 ms
140,544 KB
testcase_21 AC 1,866 ms
120,620 KB
testcase_22 AC 1,271 ms
120,100 KB
testcase_23 AC 822 ms
99,884 KB
testcase_24 AC 323 ms
87,552 KB
testcase_25 AC 1,767 ms
117,536 KB
testcase_26 AC 1,576 ms
122,520 KB
testcase_27 AC 1,774 ms
118,248 KB
testcase_28 AC 190 ms
80,128 KB
testcase_29 AC 1,628 ms
124,996 KB
testcase_30 AC 642 ms
96,256 KB
testcase_31 AC 1,971 ms
140,228 KB
testcase_32 AC 363 ms
90,496 KB
testcase_33 AC 579 ms
94,948 KB
testcase_34 AC 1,968 ms
140,788 KB
testcase_35 AC 1,954 ms
140,020 KB
testcase_36 AC 1,979 ms
139,904 KB
testcase_37 AC 978 ms
110,668 KB
testcase_38 AC 1,905 ms
130,124 KB
testcase_39 AC 1,924 ms
129,752 KB
testcase_40 AC 1,909 ms
130,256 KB
testcase_41 AC 1,630 ms
132,060 KB
testcase_42 WA -
testcase_43 AC 1,670 ms
126,752 KB
testcase_44 AC 1,892 ms
129,356 KB
testcase_45 WA -
testcase_46 AC 732 ms
101,376 KB
testcase_47 WA -
testcase_48 AC 334 ms
130,564 KB
testcase_49 AC 1,761 ms
140,120 KB
testcase_50 AC 1,767 ms
139,744 KB
testcase_51 AC 1,779 ms
139,520 KB
testcase_52 AC 1,769 ms
139,916 KB
testcase_53 AC 294 ms
87,424 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 t - n < ans:
        ans = t - n
    now = n
    ii = jj
print(ans)
0