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
- alter
- javascript
- string
- map
- deque
- Properties
- scanner
- 스택
- priority_queue
- 스프링부트
- JPA
- 힙덤프
- List
- date
- BFS
- Java
- set
- CSS
- Union-find
- dfs
- Calendar
- 리소스모니터링
- NIO
- math
- GC로그수집
- sql
- union_find
- 큐
- html
- spring boot
Archives
- Today
- Total
목록백준 #10769번 (1)
매일 조금씩
백준 10769번: 행복한지 슬픈지
실수로 cin으로 해놓고 잘못된 걸 찾았던 문제..^^ #include #include #include 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..
알고리즘
2020. 2. 8. 20:34