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
- 프로그래머스
- 타입스크립트
- 스프링
- codeup
- Java
- Operating System
- OS
- react-redux
- 알고리즘
- 코드업
- 파이썬
- web
- 일상
- 공부
- 정렬
- 백준
- react
- 분할메모리할당
- Redux
- js to ts
- 협업
- Spring
- 토이프로젝트
- 리덕스장바구니
- CPU 스케줄링
- 자료구조
- error
- C++
- memory
- 기초100제
Archives
- Today
- Total
목록14888 (1)
감자튀김 공장🍟
[백준/14888] 연산자 끼워넣기 (with 파이썬)
✔ 문제 ✔ 풀이 import sys input = sys.stdin.readline n = int(input()) nums = list(map(int, input().split())) op = list(map(int, input().split())) minRes, maxRes = int(1e9), -int(1e9) res = nums[0] # 첫번째 숫자 뒤 부터 연산자와 숫자가 나오기 때문 def dfs(idx): global res global minRes, maxRes if idx == n: if res maxRes: maxRes = res return for i in range(4): temp = res if op[i] > 0: if i ..
Algorithm/BOJ
2023. 1. 4. 14:03