https://www.acmicpc.net/problem/1453
n = int(input())
arr = list(map(int, input().split()))
seat = []
refuse = 0
for i in arr:
if seat.count(i) == 0:
seat.append(i)
else:
refuse += 1
print(refuse)
seat.count(i) == 0 이라는 의미는 seat에 같은 값이 없다는 의미입니다. 그러므로 i를 seat에 추가합니다.
만약, 같은값이 존재한다면 변수 refuse(거절당한 사람의 수)에 1을 더해줍니다.