結果

問題 No.2248 max(C)-min(C)
ユーザー ああいいああいい
提出日時 2023-03-18 20:19:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 780 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 140,288 KB
最終ジャッジ日時 2024-09-18 13:30:29
合計ジャッジ時間 45,387 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 47 ms
64,256 KB
testcase_04 AC 44 ms
62,336 KB
testcase_05 AC 40 ms
59,264 KB
testcase_06 AC 53 ms
70,272 KB
testcase_07 AC 56 ms
71,296 KB
testcase_08 AC 56 ms
71,936 KB
testcase_09 AC 55 ms
71,296 KB
testcase_10 AC 39 ms
59,136 KB
testcase_11 AC 55 ms
71,168 KB
testcase_12 AC 47 ms
64,640 KB
testcase_13 AC 52 ms
67,968 KB
testcase_14 AC 56 ms
71,936 KB
testcase_15 AC 56 ms
71,296 KB
testcase_16 AC 47 ms
63,872 KB
testcase_17 AC 53 ms
70,912 KB
testcase_18 AC 1,389 ms
123,236 KB
testcase_19 AC 189 ms
82,944 KB
testcase_20 AC 1,614 ms
140,100 KB
testcase_21 AC 1,557 ms
119,976 KB
testcase_22 AC 1,049 ms
119,728 KB
testcase_23 AC 658 ms
99,440 KB
testcase_24 AC 260 ms
87,424 KB
testcase_25 AC 1,448 ms
117,348 KB
testcase_26 AC 1,324 ms
122,392 KB
testcase_27 AC 1,449 ms
118,176 KB
testcase_28 AC 155 ms
80,384 KB
testcase_29 AC 1,320 ms
125,128 KB
testcase_30 AC 516 ms
96,128 KB
testcase_31 AC 1,635 ms
140,096 KB
testcase_32 AC 297 ms
90,240 KB
testcase_33 AC 477 ms
94,464 KB
testcase_34 AC 1,603 ms
140,288 KB
testcase_35 AC 1,619 ms
140,120 KB
testcase_36 AC 1,637 ms
140,168 KB
testcase_37 AC 788 ms
110,272 KB
testcase_38 AC 1,655 ms
130,136 KB
testcase_39 AC 1,643 ms
129,752 KB
testcase_40 AC 1,594 ms
130,264 KB
testcase_41 AC 1,322 ms
132,324 KB
testcase_42 WA -
testcase_43 AC 1,448 ms
126,580 KB
testcase_44 AC 1,584 ms
129,744 KB
testcase_45 WA -
testcase_46 AC 641 ms
101,784 KB
testcase_47 WA -
testcase_48 AC 293 ms
130,268 KB
testcase_49 AC 1,503 ms
139,616 KB
testcase_50 AC 1,518 ms
139,740 KB
testcase_51 AC 1,529 ms
139,996 KB
testcase_52 AC 1,526 ms
139,992 KB
testcase_53 AC 252 ms
87,808 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