기술 블로그

1152번 단어의 개수 본문

알고리즘 문제/BOJ

1152번 단어의 개수

parkit 2019. 9. 15. 00:24
728x90
반응형

https://www.acmicpc.net/problem/1152




그냥 세주면 된다.





1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <bits/stdc++.h>
 
using namespace std;
 
int main(void)
{
    int ans = 0;
    string s, word = "";
 
    getline(cin, s);
 
    for (auto i : s)
        if (i == ' '
        { 
            if (word.length() >= 1
            { 
                word = "";
                ++ans; 
            } 
        }
        else word += i;    
 
    printf("%d\n", word.length() >= 1 ? ans + 1 : ans);
    
    return 0;
}
cs














728x90
반응형

'알고리즘 문제 > BOJ' 카테고리의 다른 글

17471번 게리맨더링  (0) 2019.09.21
1938번 통나무 옮기기  (0) 2019.09.15
2230번 수 고르기  (0) 2019.09.15
1049번 기타줄  (0) 2019.09.14
17136번 색종이 붙이기  (0) 2019.09.07