250x250
Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- date
- dfs
- 힙덤프
- Calendar
- html
- Properties
- Union-find
- math
- GC로그수집
- sql
- BFS
- javascript
- priority_queue
- NIO
- scanner
- JPA
- 스택
- union_find
- set
- List
- 스프링부트
- 리소스모니터링
- Java
- deque
- 큐
- CSS
- string
- map
- spring boot
- alter
Archives
- Today
- Total
매일 조금씩
백준 10769번: 행복한지 슬픈지 본문
728x90
반응형
실수로 cin으로 해놓고 잘못된 걸 찾았던 문제..^^
#include <iostream>
#include <string>
#include <vector>
using namespace std;
int main(void) {
ios_base::sync_with_stdio(0);
cin.tie(0);
string str;
int happy = 0;
int sad = 0;
getline(cin, str);
for (int i = 0; i < str.size(); i++) {
if (i < str.size()-3 && str[i] == ':'&& str[i + 1] == '-'&& str[i + 2] == ')') {
happy++;
}
else if (i < str.size() - 3 && str[i] == ':'&& str[i + 1] == '-'&& str[i + 2] == '(') {
sad++;
}
}
if (!happy && !sad)
cout << "none";
else if (happy == sad)
cout << "unsure";
else if (happy > sad)
cout << "happy";
else
cout << "sad";
return 0;
}
728x90
반응형
'알고리즘' 카테고리의 다른 글
백준 11656번: 접미사 배열 (0) | 2020.02.11 |
---|---|
백준 2897번: 몬스터 트럭 (0) | 2020.02.09 |
백준 1919번: 애너그램 만들기 (0) | 2020.01.19 |
백준 2857번: FBI (0) | 2020.01.18 |
백준 10808번: 알바벳 개수 (0) | 2020.01.18 |