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
- Default parameter
- react
- css #html
- Python #CodeUp
- Python
- Redux
- Next
- React #Hooks
- CSS
- Hooks
- JavaScript
- Template literals
- firebase
- Nullish Coalescing Operator
- HTML #CSS
- es11
- 카카오맵 api
- BOJ
- HTML
- es6
- optional chanining
- React Kakao map
- nextjs
- spread operation
- Python #Baekjoon
- 프로그래머스
- 카카오맵
Archives
- Today
- Total
거북이개발자
[백준 7490] 0 만들기 본문
0. 제목
- 백준 7490 0 만들기
1. 문제
2. 풀이
- +, -, ' '을 재귀함수로 전체탐색후 리스트에 모든경우를 리스트에 담는다.
- 각각의 수에 기호를 넣어준뒤 replace, eval함수로 계산한다.
3. 코드
import copy
def recursive(array, n):
if len(array)==n:
operators_list.append(copy.deepcopy(array))
return
array.append(' ')
recursive(array, n)
array.pop()
array.append('+')
recursive(array, n)
array.pop()
array.append('-')
recursive(array, n)
array.pop()
tc=int(input())
for _ in range(tc):
operators_list=[]
n=int(input())
recursive([], n-1)
integers=[i for i in range(1, n+1)]
for operators in operators_list:
string=""
for i in range(n-1):
string+=str(integers[i])+operators[i]
string+=str(integers[-1])
if eval(string.replace(" ", ""))==0:
print(string)
print()
'Algorithm(Python) > BaekJoon' 카테고리의 다른 글
[백준 1568] 새 (0) | 2021.05.11 |
---|---|
[백준 1543] 문서 검색 (0) | 2021.05.11 |
[백준 2747]피보나치 수 (0) | 2021.01.20 |
[백준 10989] 수 정렬하기3 (0) | 2021.01.20 |
[백준 11650] 좌표 정렬하기 (0) | 2021.01.19 |
Comments