문제 : https://www.acmicpc.net/problem/2003 정답 코드 import sys input = sys.stdin.readline N, M = map(int, input().split()) arr = list(map(int, input().split())) start = 0 end = 0 ans = 0 while end M: start += 1 print(ans) 정리 및 분석 처음에 end를 start와 다르게 해야하는 줄 알고 end를 1부터 시작했습니다. 하지..