728x90
반응형
단순 구현 문제다. 입력으로 받은 리스트를 li라고 하면, li와 정렬된 li의 다른 요소의 개수를 세주면 된다.
N = int(input())
li = list(map(int, input().split()))
sorted_li = sorted(li)
res = len([i for i in range(N) if li[i] != sorted_li[i]])
print(res)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 14720번 우유 축제(python) (0) | 2021.03.04 |
---|---|
백준 알고리즘 14682번 Shifty Sum(python) (0) | 2021.03.04 |
백준 알고리즘 14614번 Calculate!(python) (0) | 2021.03.04 |
백준 알고리즘 14579번 덧셈과 곱셈(python) (0) | 2021.03.03 |
백준 알고리즘 14542번 Outer Triangle Sum(python) (0) | 2021.03.03 |