https://www.acmicpc.net/problem/17299 17299번: 오등큰수 첫째 줄에 수열 A의 크기 N (1 ≤ N ≤ 1,000,000)이 주어진다. 둘째에 수열 A의 원소 A1, A2, ..., AN (1 ≤ Ai ≤ 1,000,000)이 주어진다. www.acmicpc.net 문제 21.04.14 접근법 21.04.14 코드 n=int(input()) arr=list(map(int,input().split())) cnt=dict() for i in arr: try: cnt[i]+=1 except: cnt[i]=1 stack=[0] i=1 ans=[-1]*n while stack and i