Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Couldn't read row 0
- 6566
- Docker
- cmd2
- 백준
- python
- pwable.kr
- java.lang.IllegalStateException
- cmd1
- Make sure the Cursor is initialized correctly before accessing data for it.
- 파이썬
- pwnable
- 10814
- 클라우드란?
- tlqkf
- 애너그램 그룹
- 쏘큩
- 코틀린
- 블록체인
- pwnable.kr
- UNIQUE constraint failed
- 클라우드가 뭐야
- Drive-By-Download
- 페니빙
- col -1 from CursorWindow
- 포너블
- kotlin
- 액션바 필요없숴
- 나이순 정렬
- SQLiteConstraintException
Archives
- Today
- Total
푸르미르
[python]10872.팩토리얼 본문
N이라는 수가 주어지면 N!을 한 값을 재귀함수를 이용하여 결과값을 출력하는 문제이다.
N!=1*2*3*....*(N-1)*N
(N-1)!=1*2*3*....*(N-1)이므로 결국 N!= (N-1)!*N임을 알 수 있다.
이것을 알고 코드를 짠다면
1
2
3
4
5
6
7
8
|
def factorial(a):
if a == 0: #0!=1
return 1
elif a == 1: #1!=1
return 1
return a * factorial(a-1) #2이상의 수 입력시
print(factorial(int(input())))
|
cs |
'Baekjoon Online Judge' 카테고리의 다른 글
[python]1193.분수찾기 (0) | 2021.01.10 |
---|---|
[python]10870.피보나치 수 (2) | 2021.01.07 |
[python]2292.벌집 (0) | 2021.01.07 |
[python]1316.그룹 단어 체커 (2) | 2021.01.06 |
[python]2941.크로아티아 알파벳 (0) | 2021.01.06 |