Recent Posts
Notice
No Rules Rules
피시방 알바 (feat. 백준, 1453번) 본문
728x90
반응형
피시방 알바
https://www.acmicpc.net/problem/1453
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
bool visit[101]{false};
register int N, ans = 0;
cin >> N;
for(register int n = 0, v; n < N; ++n){
cin >> v;
if(!visit[v])
visit[v] = true;
else
++ans;
}
cout << ans;
return 0;
}
// *&)*@*
반응형
문제의 조건에 따라 이미 방문한 위치인 경우, 거절하는 횟수를 증가시켜 줍니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
N번째 큰 수 (feat. 백준, 2075번) (0) | 2023.01.27 |
---|---|
장기자랑 (feat. 백준, 27277번) (0) | 2023.01.27 |
숨바꼭질 2 (feat. 백준, 12851번) (0) | 2023.01.27 |
비밀편지 (feat. 백준, 2596번) (0) | 2023.01.26 |
A+B - 6 (feat. 백준, 10953번) (0) | 2023.01.25 |
Comments