일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 정규식
- 수학
- 정렬
- Combinations
- 백준
- 다익스트라
- 재귀함수
- Zip
- heapq
- Re
- programmers
- 동적 계획법
- 추석맞이 코딩챌린지
- divmod
- dfs
- 위클리 챌린지
- 자바
- 프로그래머스
- backjoon
- 카카오
- KAKAO BLIND RECRUITMENT
- DateTime
- 파이썬
- BFS
- python
- lambda
- java
- 이분탐색
- 그리디
- Set
Archives
- Today
- Total
상상쓰
[프로그래머스] k진수에서 소수 개수 구하기 본문
https://programmers.co.kr/learn/courses/30/lessons/92335
1. k진수를 구한다.
2. P는 각 자릿수에 '0' 을 포함하지 않고 양옆에 '0' 또는 아무것도 없어야 하므로 '0' 을 기준으로 쪼개어 배열을 만든다.
3. 배열 중 소수인 원소의 개수를 구한다.
import math
def prime(n):
answer = True
for i in range(2, int(math.sqrt(n)) + 1):
if n % i == 0:
answer = False
break
return answer
def solution(n, k):
answer = 0
P = ''
while n > 0:
P = str(n % k) + P
n //= k
array = P.split('0')
for i in array:
if i not in ['1', '']:
if prime(int(i)):
answer += 1
return answer
print(solution(437674, 3)) # 3
'Coding Test' 카테고리의 다른 글
[프로그래머스] 양궁대회 (0) | 2022.02.20 |
---|---|
[프로그래머스] 주차 요금 계산 (0) | 2022.02.12 |
[프로그래머스] 신고 결과 받기 (0) | 2022.01.19 |
[백준] Fly me to the Alpha Centauri (2) | 2022.01.14 |
[백준] 동전 1 (0) | 2021.11.18 |
Comments