https://school.programmers.co.kr/learn/courses/30/lessons/17687
def solution(n, t, m, p):
def convert(n, k):
result = ''
while n > 0:
if str(n % k) == '10':
result = 'A' + result
elif str(n % k) == '11':
result = 'B' + result
elif str(n % k) == '12':
result = 'C' + result
elif str(n % k) == '13':
result = 'D' + result
elif str(n % k) == '14':
result = 'E' + result
elif str(n % k) == '15':
result = 'F' + result
else:
result = str(n % k) + result
n //= k
return result
answer = '0'
result = []
for i in range(1, t * m + 1):
temp = convert(i, n)
answer += temp
return answer[p - 1::m][:t]
728x90
반응형
'🔻PS > Programmers' 카테고리의 다른 글
[Programmers] 프로그래머스 이중우선순위큐 Python (0) | 2024.05.26 |
---|---|
[Programmers] 프로그래머스 뉴스 클러스터링 Python (0) | 2024.05.21 |
[Programmers] 프로그래머스 외계인 사전 Python (0) | 2024.05.19 |
[Programmers] 프로그래머스 명예의 전당(1) Python (0) | 2024.05.19 |
[Programmers] 프로그래머스 정수 내림차순으로 배치하기 Python (0) | 2024.05.19 |