Recent Posts
Notice
No Rules Rules
:chino_shock: (feat. 백준, 27310번) 본문
728x90
반응형
:chino_shock:
https://www.acmicpc.net/problem/27310
// 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