728x90
반응형
#include <iostream>
using namespace std;
int main() {
//-100 ~ 100 의 수의 개수를 담기위한 201이상 크기의 배열
int list[204]{ 0, };
int test;
cin >> test;
int input;
//수 입력받고 그에맞는 INDEX의 수 증가
for (int i = 0;i < test;i++) {
cin >> input;
//음수일 때는 201을 더해주어 INDEX 100이상으로 취급
if (input < 0) {
input += 201;
}
list[input]++;
}
//타겟수 입력받고 그 INDEX의 수 출력
cin >> input;
if (input < 0) {
input += 201;
}
cout << list[input];
}
728x90
반응형
'백준 > BRONZE' 카테고리의 다른 글
[백준 23972번][C++] 악마의 제안 (0) | 2022.08.31 |
---|---|
[백준 3003번][C++] 킹, 퀸, 룩, 비숍, 나이트, 폰 (0) | 2022.08.30 |
[백준 2455번][C++] 지능형 기차 (0) | 2022.08.29 |
[백준 16503번][C++] 괄호 없는 사칙연산 (0) | 2022.08.21 |
[백준 15829번][C++] Hashing (0) | 2022.08.06 |