728x90
반응형

단순 정렬 문제이다. 파이썬으로 정말 쉽게 풀 수 있는 문제이다.

N = int(input())
li = list(map(int,input().split()))
sorted_li = sorted(set(li))
d = {sorted_li[i]: i for i in range(len(sorted_li))}
res = [d[n] for n in li]
print(*res)
728x90
반응형

+ Recent posts