티스토리 뷰
https://www.acmicpc.net/problem/10820
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #include <iostream> #include <string> #include <cstring> using namespace std; int main() { string s; int arr[4]; while (getline(cin,s)) { memset(arr, 0, sizeof(arr)); for (int i = 0; i < s.size(); i++) { if (48 <= s[i] && s[i] <= 57) arr[2]++; else if (65 <= s[i] && s[i] <= 90) arr[1]++; else if (97 <= s[i] && s[i] <= 122) arr[0]++; else if (s[i] = ' ') arr[3]++; } for (int i = 0; i < 4; i++) cout << arr[i] << ' '; cout << "\n"; } return 0; } | cs |
'알고리즘 > 자료구조' 카테고리의 다른 글
BOJ)11656 접미사 배열(다시 보기) (0) | 2017.06.20 |
---|---|
BOJ)11655 ROT13 (0) | 2017.06.20 |
BOJ)1158 조세퍼스 문제 (0) | 2017.06.20 |
BOJ)10866 덱(deque) (0) | 2017.06.20 |
BOJ)1406 에디터 (0) | 2017.06.19 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Fakebook
- XAML
- Add TapGesture
- CustomCollectionViewCell
- 백준
- MVVM
- 타일링
- dfs
- C++
- Custom Cell
- Cell Animation
- 데이터 바인딩
- BOJ
- FEED
- 객체
- 그래프
- 코딩야학
- DP
- CollectionView
- UIView Animation
- listview
- WPF
- 문자열
- command
- 생활코딩
- 스택
- Grid
- BFS
- 백준온라인
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 27 | 28 | 29 | 30 |
글 보관함