티스토리 뷰
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 <iostream> #include <string> #include <algorithm> using namespace std; int check[10]; int main() { string str; getline(cin, str); for (int i = 0; i < str.size(); i++) { check[str[i] - '0']++; } int maxx = -1; maxx = (check[6] + check[9]) % 2 == 0 ? (check[6] + check[9]) / 2 : (check[6] + check[9]) / 2 + 1; for (int i = 0; i < 10; i++) { if (i == 6 || i == 9) continue; maxx = max(maxx, check[i]); } cout << maxx << endl; return 0; } | cs |
'알고리즘' 카테고리의 다른 글
[체감난이도/최하] 백준 10808번 알파벳 개수 (0) | 2017.08.28 |
---|---|
[체감난이도/최하] 백준 1100번 하얀 칸 (0) | 2017.08.28 |
[c/c++] 널문자 0 '\0' 널문자열 NULL 의 차이 및 개념 (0) | 2017.08.27 |
[c/c++] char배열과 문자열의 차이 (0) | 2017.08.27 |
[c/c++] 문자열 입력 받기 (0) | 2017.08.27 |
댓글
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- reducer
- promise
- async
- await
- useEffect
- reactdom
- server side rendering
- return type
- es6
- props
- mobx
- design system
- Polyfill
- javascript
- hydrate
- storybook
- type alias
- rendering scope
- Action
- react hooks
- Babel
- react
- state
- reflow
- typescript
- webpack
- computed
- useRef
- Next.js
- atomic design
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함