일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- lgh
- max_length
- NaverCloudPlatform
- epsp
- PS
- 1010번: 다리 놓기 (Python)
- 고속거듭제곱알고리즘
- 16953
- 백준 다리놓기
- 백준 1158번
- 그래프 탐색
- python
- Django
- 9735번
- 문제풀이
- ncp배포
- 요세푸스 문제
- 백준 7576번
- 다리 놓기
- 백준 토마토
- Charfield
- 백준 7576
- 백준
- 5397
- 백준 1158
- linc3.0
- 7576번
- 경상국립대학교
- json
- ncloud서버
- Today
- Total
목록문제풀이 (2)
DolphinDash
간단한 dp문제인 줄 알고 덤볐다가 조금 오래걸렸다. 처음엔 def dp(que, target, tries): nq = [] if que[0] > target: return -1 for value in que: if value * 2 == target or value * 10 + 1 == target: return tries+1 else: nq.append(value*2) nq.append(value*10 + 1) return dp(nq, target, tries+1) a, b = map(int, input().split()) print(dp([a], b, 1)) 재귀 함수를 만들어서 돌렸더니 메모리 초과가 났다. 일단 tries 횟수가 높아지면 높아질수록 필요 메모리양이 늘어나고 que[-1]의 메모리..
1629번: 곱셈 첫째 줄에 A, B, C가 빈 칸을 사이에 두고 순서대로 주어진다. A, B, C는 모두 2,147,483,647 이하의 자연수이다. www.acmicpc.net # 정답코드 import sys sys.stdin.readline def conquest_num(num:int, index:int, C:int)->int: if index == 1: return num % C else: halfindex = index//2 if index % 2 == 0: return conquest_num(num, halfindex, C) ** 2 % C else: return conquest_num(num, halfindex, C) ** 2 * num % C A, B, C = map(int, input()..