#include <iostream>
#include <algorithm>
#include <vector>
#include <utility>
using namespace std;
using IntPair = pair<int, int>;
#define y first
#define x second
#define MAX 1000
// 다음 위치 시계 방향
IntPair pos[]
{
{ 1, 0 }, // 북
{ 0, 1 }, // 서
{-1, 0 }, // 남
{ 0,-1 } // 동
};
int main()
{
int n, res = 0;
cin >> n;
vector<int> cnt(MAX + 1);
for (int i = 0; i < n; i++)
{
int n;
cin >> n;
cnt[n]++;
}
for (int i = 0; i <= MAX; i++)
res += min(cnt[i], 2);
cout << res;
}
'코딩테스트 > 백준' 카테고리의 다른 글
[실4] 25214 - 크림파스타 (0) | 2025.03.30 |
---|---|
[실3] 24725 - 엠비티아이 (0) | 2025.03.13 |
[실2] DFS와 BFS (0) | 2025.03.12 |
[실5] 11292 - 키 큰 사람 (0) | 2025.03.03 |
[실3] 9711 - 피보나치 (0) | 2025.03.02 |