No Rules Rules

알파벳 개수 (feat. 백준, 10808번) 본문

생활/코테

알파벳 개수 (feat. 백준, 10808번)

개발하는 완두콩 2022. 9. 30. 12:39
728x90
반응형

알파벳 개수
https://www.acmicpc.net/problem/10808

 

10808번: 알파벳 개수

단어에 포함되어 있는 a의 개수, b의 개수, …, z의 개수를 공백으로 구분해서 출력한다.

www.acmicpc.net

 

반응형

 

// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
using namespace std;
int main(){
    ios::sync_with_stdio(false), cin.tie(NULL);
    string str;
    register int arr[50]{0};
    cin >> str;
    for(auto& ch : str)
        ++arr[ch - 'a'];
    for(register int i = 0; i <= 'z' - 'a'; ++i)
        cout << arr[i] << " ";
    return 0;
}
// *&)*@*

 

알파벳 'a'를 0번 배열이라고 했을때, 'z'까지 해당되는 배열을 카운팅하고 이를 출력하는 해답입니다.

728x90
반응형

'생활 > 코테' 카테고리의 다른 글

문자열 폭발 (feat. 백준, 9935번)  (0) 2022.10.04
알파벳 (feat. 백준, 1987번)  (0) 2022.09.30
N과 M (9) (feat. 백준, 15663번)  (0) 2022.09.29
섬의 개수 (feat. 백준, 4963번)  (0) 2022.09.29
분산처리 (feat. 백준, 1009번)  (0) 2022.09.29
Comments