본문 바로가기
코딩테스트/SW Expert Academy

1217. [S/W 문제해결 기본] 4일차 - 거듭 제곱

by brown_board 2022. 11. 19.
728x90

https://swexpertacademy.com/main/code/problem/problemDetail.do?problemLevel=3&contestProbId=AV14dUIaAAUCFAYD&categoryId=AV14dUIaAAUCFAYD&categoryType=CODE&problemTitle=&orderBy=RECOMMEND_COUNT&selectCodeLang=ALL&select-1=3&pageSize=10&pageIndex=3 

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
def mul(n,m):
    global count
    if m == 0:
        return
    count = count * n
    m = m-1
    mul(n,m)
 
for test in range(1,11):
    #테스트 번호
    t = int(input())
    #n:수, m:거듭제곱횟수
    n,m = map(int,input().split())
    count = 1
    mul(n,m)
    print(f'#{test} {count}')
cs
728x90

댓글