https://www.acmicpc.net/problem/12789 12789번: 도키도키 간식드리미 인하대학교 학생회에서는 중간, 기말고사 때마다 시험 공부에 지친 학우들을 위해 간식을 나눠주는 간식 드리미 행사를 실시한다. 승환이는 시험 기간이 될 때마다 간식을 받을 생각에 두근두 www.acmicpc.net 문제의 조건을 놓쳐 틀린 코드 n=int(input()) arr=list(map(int,input().split())) stack=[] order=1 for x in arr: if x==order: order+=1 else: stack.append(x) for _ in range(len(stack)): if stack[-1]==min(stack): stack.pop() if stack: prin..