結果

問題 No.2248 max(C)-min(C)
ユーザー colognecologne
提出日時 2023-03-21 13:56:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 542 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 165,740 KB
最終ジャッジ日時 2024-09-18 14:20:53
合計ジャッジ時間 29,326 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,312 KB
testcase_01 WA -
testcase_02 AC 36 ms
53,216 KB
testcase_03 AC 43 ms
61,176 KB
testcase_04 AC 41 ms
61,232 KB
testcase_05 AC 38 ms
53,396 KB
testcase_06 AC 56 ms
66,912 KB
testcase_07 AC 54 ms
67,536 KB
testcase_08 AC 55 ms
68,848 KB
testcase_09 AC 54 ms
67,048 KB
testcase_10 AC 37 ms
53,436 KB
testcase_11 AC 53 ms
67,644 KB
testcase_12 AC 43 ms
61,484 KB
testcase_13 AC 51 ms
67,128 KB
testcase_14 AC 54 ms
67,792 KB
testcase_15 AC 57 ms
68,392 KB
testcase_16 AC 46 ms
61,172 KB
testcase_17 AC 53 ms
68,276 KB
testcase_18 AC 272 ms
134,252 KB
testcase_19 AC 78 ms
80,640 KB
testcase_20 AC 306 ms
146,996 KB
testcase_21 AC 301 ms
144,296 KB
testcase_22 AC 221 ms
104,320 KB
testcase_23 AC 157 ms
96,128 KB
testcase_24 AC 100 ms
84,832 KB
testcase_25 AC 288 ms
136,728 KB
testcase_26 AC 276 ms
124,852 KB
testcase_27 AC 278 ms
136,284 KB
testcase_28 AC 76 ms
78,592 KB
testcase_29 AC 280 ms
131,012 KB
testcase_30 AC 145 ms
95,056 KB
testcase_31 AC 311 ms
146,748 KB
testcase_32 WA -
testcase_33 AC 132 ms
94,464 KB
testcase_34 AC 328 ms
147,196 KB
testcase_35 AC 338 ms
146,876 KB
testcase_36 AC 322 ms
147,260 KB
testcase_37 AC 181 ms
99,604 KB
testcase_38 AC 1,366 ms
137,248 KB
testcase_39 AC 1,460 ms
137,748 KB
testcase_40 AC 1,381 ms
136,716 KB
testcase_41 AC 1,170 ms
119,040 KB
testcase_42 AC 1,457 ms
136,280 KB
testcase_43 AC 1,174 ms
119,672 KB
testcase_44 AC 1,305 ms
137,432 KB
testcase_45 AC 973 ms
115,400 KB
testcase_46 AC 504 ms
100,624 KB
testcase_47 AC 1,409 ms
137,364 KB
testcase_48 AC 1,262 ms
150,064 KB
testcase_49 AC 1,883 ms
165,740 KB
testcase_50 AC 2,000 ms
164,968 KB
testcase_51 AC 1,914 ms
164,456 KB
testcase_52 AC 1,984 ms
164,856 KB
testcase_53 AC 322 ms
86,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq


def main():
    N = int(input())
    *A, = map(int, input().split())
    *B, = map(int, input().split())
    Q = []
    for i in range(N):
        heapq.heappush(Q, sorted([A[i], B[i], (A[i]+B[i])//2]))
    mx, mn = max(Q)[0], Q[0][0]
    ans = mx-mn
    while True:
        a = heapq.heappop(Q)
        if len(a) == 1:
            print(ans)
            return
        a = a[1:]
        mx = max(mx, a[0])
        mn = Q[0][0]
        ans = min(ans, mx-mn)
        heapq.heappush(Q, a)


if __name__ == '__main__':
    main()
0