[백준][Python] 1940 주몽 정렬 후 투포인터로 풀면 됩니다. import sys input = sys.stdin.readline N = int(input()) M = int(input()) arr = sorted(map(int, input().split())) left = 0 right = N - 1 answer = 0 while left M: right -= 1 else: left += 1 print(answer) practivceAlgorithm/백준 2021.10.13