[문제]
https://www.acmicpc.net/problem/10807
[코드]
#include <iostream>
using namespace std;
int arr[201];
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int n,v;
cin >> n;
for(int i=1; i<=n; i++) {
int t;
cin >> t;
arr[t+100]++; // 만약 t가 -100 -> 0, t가 0 -> 100, 100 -> 200
}
cin >> v;
cout << arr[v+100];
}
'✏️ Algorithm > 알고리즘 풀이' 카테고리의 다른 글
10828번 스택 - C++ (0) | 2022.07.16 |
---|---|
백준 2493번 - 탑 C++ (0) | 2022.04.23 |
백준 3273번 - 두 수의 합 C++ (0) | 2022.04.16 |
백준 1475번 - C++ 방 번호 (0) | 2022.04.14 |
백준 1931번: 회의실 배정 - C++ (0) | 2022.02.26 |