Recent Posts
Notice
No Rules Rules
개수 세기 (feat. 백준, 10807번) 본문
728x90
반응형
개수 세기
https://www.acmicpc.net/problem/10807
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <algorithm>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, arr[100], v;
cin >> N;
for(register int n = 0; n < N; ++n)
cin >> arr[n];
cin >> v;
cout << count(arr, arr + N, v);
return 0;
}
// *&)*@*
반응형
STL에는 배열 또는 컨테이너 내의 특정 값의 개수를 확인할 수 있는 count 함수가 존재합니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
학점계산 (feat. 백준, 2754번) (0) | 2022.10.20 |
---|---|
A → B (feat. 백준, 16953번) (0) | 2022.10.20 |
행렬 덧셈 (feat. 백준, 2738번) (0) | 2022.10.19 |
R2 (feat. 백준, 3046번) (0) | 2022.10.19 |
과자 (feat. 백준, 10156번) (0) | 2022.10.19 |
Comments