結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 65 ms
66,944 KB
testcase_04 AC 61 ms
64,512 KB
testcase_05 AC 54 ms
61,440 KB
testcase_06 AC 76 ms
72,576 KB
testcase_07 AC 81 ms
75,776 KB
testcase_08 AC 81 ms
75,776 KB
testcase_09 AC 82 ms
76,160 KB
testcase_10 AC 54 ms
61,568 KB
testcase_11 AC 81 ms
76,032 KB
testcase_12 AC 67 ms
67,328 KB
testcase_13 AC 73 ms
70,784 KB
testcase_14 AC 83 ms
75,904 KB
testcase_15 AC 82 ms
76,032 KB
testcase_16 AC 64 ms
66,816 KB
testcase_17 AC 78 ms
74,112 KB
testcase_18 AC 1,681 ms
123,876 KB
testcase_19 AC 229 ms
82,816 KB
testcase_20 AC 1,956 ms
140,104 KB
testcase_21 AC 1,862 ms
120,252 KB
testcase_22 AC 1,285 ms
119,860 KB
testcase_23 AC 808 ms
99,560 KB
testcase_24 AC 329 ms
87,424 KB
testcase_25 AC 1,769 ms
117,480 KB
testcase_26 AC 1,574 ms
122,644 KB
testcase_27 AC 1,745 ms
117,820 KB
testcase_28 AC 196 ms
80,384 KB
testcase_29 AC 1,613 ms
124,612 KB
testcase_30 AC 628 ms
96,128 KB
testcase_31 AC 1,975 ms
140,408 KB
testcase_32 AC 373 ms
89,984 KB
testcase_33 AC 584 ms
94,208 KB
testcase_34 AC 1,970 ms
140,788 KB
testcase_35 AC 1,947 ms
140,028 KB
testcase_36 AC 1,963 ms
140,160 KB
testcase_37 AC 992 ms
110,152 KB
testcase_38 AC 1,885 ms
129,492 KB
testcase_39 AC 1,877 ms
129,872 KB
testcase_40 AC 1,906 ms
129,876 KB
testcase_41 AC 1,587 ms
132,452 KB
testcase_42 WA -
testcase_43 AC 1,647 ms
126,368 KB
testcase_44 AC 1,886 ms
129,628 KB
testcase_45 WA -
testcase_46 AC 738 ms
101,504 KB
testcase_47 WA -
testcase_48 AC 347 ms
129,980 KB
testcase_49 AC 1,762 ms
139,612 KB
testcase_50 AC 1,743 ms
139,736 KB
testcase_51 AC 1,764 ms
139,484 KB
testcase_52 AC 1,755 ms
139,872 KB
testcase_53 AC 299 ms
87,552 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 ** 10
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