結果
問題 | No.2248 max(C)-min(C) |
ユーザー | tamato |
提出日時 | 2023-03-17 23:09:38 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 826 bytes |
コンパイル時間 | 257 ms |
コンパイル使用メモリ | 82,688 KB |
実行使用メモリ | 220,780 KB |
最終ジャッジ日時 | 2024-09-18 12:14:55 |
合計ジャッジ時間 | 13,541 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
63,872 KB |
testcase_01 | AC | 38 ms
57,856 KB |
testcase_02 | AC | 44 ms
59,648 KB |
testcase_03 | AC | 416 ms
76,288 KB |
testcase_04 | AC | 176 ms
75,928 KB |
testcase_05 | AC | 103 ms
75,992 KB |
testcase_06 | AC | 661 ms
76,544 KB |
testcase_07 | AC | 438 ms
76,388 KB |
testcase_08 | AC | 1,207 ms
76,672 KB |
testcase_09 | AC | 536 ms
76,544 KB |
testcase_10 | AC | 87 ms
75,932 KB |
testcase_11 | AC | 812 ms
76,460 KB |
testcase_12 | AC | 309 ms
76,672 KB |
testcase_13 | AC | 502 ms
76,672 KB |
testcase_14 | AC | 1,018 ms
76,544 KB |
testcase_15 | AC | 927 ms
76,276 KB |
testcase_16 | AC | 213 ms
76,496 KB |
testcase_17 | AC | 239 ms
76,536 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
ソースコード
import sys input = sys.stdin.readline mod = 998244353 N = int(input()) A = list(map(int, input().split())) B = list(map(int, input().split())) AB = [(a + b) // 2 for a, b in zip(A, B)] V = set() for a in A: V.add(a) for b in B: V.add(b) for ab in AB: V.add(ab) V = sorted(list(V)) ans = 10 ** 17 mi = min(min(A), min(B)) ma = max(max(A), max(B)) for v in V: ok = 10 ** 17 ng = -1 mid = (ok + ng) // 2 while ok - ng > 1: flg = 1 for i in range(N): tmp = 0 for x in [A[i], B[i], AB[i]]: if v <= x <= v + mid: tmp = 1 if not tmp: flg = 0 break if flg: ok = mid else: ng = mid mid = (ok + ng) // 2 ans = min(ans, ok) print(ans)