No Rules Rules

:chino_shock: (feat. 백준, 27310번) 본문

생활/코테

:chino_shock: (feat. 백준, 27310번)

개발하는 완두콩 2023. 2. 6. 11:49
728x90
반응형

:chino_shock:
https://www.acmicpc.net/problem/27310

 

27310번: :chino_shock:

첫 번째 줄에 이모지가 주어진다. 주어지는 이모지는 항상 :chino로 시작하고 :로 끝나며, 전체 길이가 $7$ 이상 $32$ 이하이다.

www.acmicpc.net

 

// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main() {
    ios::sync_with_stdio(false), cin.tie(NULL);
    string str;
    cin >> str;
    cout << str.size() + count(str.begin(), str.end(), ':') + count(str.begin(), str.end(), '_') * 5;
	return 0;
}
// *&)*@*

 

반응형

문제의 요구사항에 맞게 문자열을 계산하여 출력합니다.

728x90
반응형

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

치노의 라떼 아트 (Easy) (feat. 백준, 27311번)  (0) 2023.02.06
Hashing (feat. 백준, 15829번)  (0) 2023.02.06
1 (feat. 백준, 4375번)  (0) 2023.02.03
N과 M (5) (feat. 백준, 15654번)  (0) 2023.02.03
공 (feat. 백준, 1547번)  (0) 2023.02.03
Comments