https://www.codetree.ai/ko/trails/complete/curated-cards/challenge-point-on-the-line-segment/description 선분 위의 점 설명 | 코드트리선분 위의 점의 요구사항을 정확히 분석하고, 적절한 알고리즘을 고안해 두 번째 단계 중급 문제를 해결해보세요.www.codetree.ai from sys import stdindef int_input(): return map(int, stdin.readline().split())n, m = int_input()arr = sorted(int_input())def binary_search(target, type_of): start, end = 0, n-1 if type_of =..