본문 바로가기

알고리즘/프로그래머스

[Python] n진수 게임

https://school.programmers.co.kr/learn/courses/30/lessons/17687

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

# n 진수 게임
# n 진수로 숫자 변환 함수
def n_radix(n, num):
    a = num
    num_ = ''
    num2alpha = {10:'A', 11:'B', 12:'C', 13:'D', 14:'E', 15:'F'}
    while a > 0:
        rest = a % n
        a = a//n
        if rest < 10:
            num_ += str(rest)
        else:
            num_ += num2alpha[rest]
    num_ = num_[::-1]
    return num_

def solution(n, t, m, p):
    
    answer = ''
    for i in range(t*m):
        if i==0:
            answer += '0'
        else:
            answer += n_radix(n, i)
            
    answer = answer[p-1:t*m:m]
    return answer

'알고리즘 > 프로그래머스' 카테고리의 다른 글

[Python] 주차 요금 계산  (0) 2023.01.21
[Python] 연속 부분 수열 합의 개수  (0) 2023.01.20
[Python] 가장 가까운 같은 글자  (0) 2023.01.16
[Python] 오픈 채팅방  (1) 2023.01.13
[Python] 피로도  (0) 2023.01.12