結果

問題 No.2248 max(C)-min(C)
ユーザー colognecologne
提出日時 2023-03-21 13:58:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,991 ms / 3,000 ms
コード長 542 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 81,832 KB
実行使用メモリ 166,256 KB
最終ジャッジ日時 2024-09-18 14:21:30
合計ジャッジ時間 29,025 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,992 KB
testcase_01 AC 34 ms
52,224 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 41 ms
60,928 KB
testcase_04 AC 40 ms
59,520 KB
testcase_05 AC 36 ms
53,632 KB
testcase_06 AC 52 ms
66,432 KB
testcase_07 AC 53 ms
66,688 KB
testcase_08 AC 57 ms
68,096 KB
testcase_09 AC 53 ms
66,688 KB
testcase_10 AC 38 ms
53,376 KB
testcase_11 AC 66 ms
67,072 KB
testcase_12 AC 42 ms
60,928 KB
testcase_13 AC 52 ms
65,792 KB
testcase_14 AC 53 ms
66,816 KB
testcase_15 AC 57 ms
68,352 KB
testcase_16 AC 43 ms
60,800 KB
testcase_17 AC 52 ms
66,688 KB
testcase_18 AC 264 ms
134,304 KB
testcase_19 AC 84 ms
81,280 KB
testcase_20 AC 311 ms
146,976 KB
testcase_21 AC 311 ms
144,372 KB
testcase_22 AC 219 ms
104,188 KB
testcase_23 AC 164 ms
96,104 KB
testcase_24 AC 99 ms
85,572 KB
testcase_25 AC 295 ms
136,088 KB
testcase_26 AC 280 ms
124,932 KB
testcase_27 AC 287 ms
136,220 KB
testcase_28 AC 81 ms
78,976 KB
testcase_29 AC 280 ms
131,532 KB
testcase_30 AC 143 ms
94,848 KB
testcase_31 AC 319 ms
147,256 KB
testcase_32 AC 100 ms
86,656 KB
testcase_33 AC 133 ms
94,720 KB
testcase_34 AC 333 ms
147,636 KB
testcase_35 AC 324 ms
147,640 KB
testcase_36 AC 323 ms
147,160 KB
testcase_37 AC 183 ms
99,488 KB
testcase_38 AC 1,403 ms
137,760 KB
testcase_39 AC 1,437 ms
137,360 KB
testcase_40 AC 1,404 ms
136,976 KB
testcase_41 AC 1,113 ms
119,204 KB
testcase_42 AC 1,335 ms
136,624 KB
testcase_43 AC 1,185 ms
119,984 KB
testcase_44 AC 1,286 ms
137,556 KB
testcase_45 AC 1,011 ms
115,608 KB
testcase_46 AC 511 ms
101,156 KB
testcase_47 AC 1,379 ms
137,104 KB
testcase_48 AC 1,292 ms
150,196 KB
testcase_49 AC 1,991 ms
166,256 KB
testcase_50 AC 1,911 ms
165,608 KB
testcase_51 AC 1,923 ms
164,716 KB
testcase_52 AC 1,849 ms
165,364 KB
testcase_53 AC 265 ms
85,552 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])
        heapq.heappush(Q, a)
        mn = Q[0][0]
        ans = min(ans, mx-mn)


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