https://www.acmicpc.net/problem/11663 1. 틀린 풀이 및 알아갈 점def binary_search(list1, target): left, right = 0, len(list1)-1 while left list1[mid]: left = mid+1 elif target == list1[mid]: return mid return rightn,m = map(int, input().split())list1 = list(map(int,input().split()))list1.sort()for _ in range(m): a,b=map(int, input().split()) n1 = binary_sea..