일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- C#강의
- Python
- DP
- python3
- 누적합
- 백준
- spring
- popleft
- 1일1솔
- JPA
- pypy3
- c#
- 합 구하기
- 우선순위큐
- 그리디 알고리즘
- 연관관계
- deque
- 소수찾기
- unity
- 프로그래머스
- 인프런
- 소수판별
- 브루투포스
- 파이썬
- 완전탐색
- mvc
- BFS
- LCM
- appendleft
- Java
Archives
- Today
- Total
목록2504 (1)
jae_coding

문제 문제 링크 코드 import sys input = sys.stdin.readline input_string = list(input().strip()) stack = list() ans = 0 count = 1 primary_value = 0 for i in input_string: if i == '(': count *= 2 stack.append(i) elif i == '[': count *= 3 stack.append(i) elif i == ')': # 올바른 괄호열이 아닐 경우 if not stack or stack[-1] == '[': ans = 0 break elif primary_value == '(': ans += count count //= 2 stack.pop() elif i == '..
알고리즘 문제/자료구조 문제
2022. 7. 20. 11:58