Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- MySQL
- Python
- php
- 백준
- Text
- Digital Forensics
- HackCTF
- C
- 정렬
- 그리디 알고리즘
- xcz.kr
- Incognito
- 수학
- N0Named
- Web Hacking
- misc
- Network
- SuNiNaTas
- cryptography
- 인코그니토
- Web
- 사칙연산
- CTF
- Database
- 써니나타스
- 구현
- 문자열
- writeup
- Forensics
- wargame
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 10872번 팩토리얼 본문
[Baekjoon/Python3] 10872번 팩토리얼
# math.factorial() 함수 사용시
import math
n = int(input())
print(math.factorial(n))
# math.factorial() 함수 미사용시
n = int(input())
sum = 1
if n == 0:
print(1)
else:
for i in range(1, n + 1):
sum *= i
print(sum)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 10926번 ??! (0) | 2020.12.06 |
---|---|
[Baekjoon/Python3] 10886번 0 = not cute / 1 = cute (0) | 2020.12.06 |
[Baekjoon/Python3] 10871번 X보다 작은 수 (0) | 2020.12.06 |
[Baekjoon/Python3] 10870번 피보나치 수 5 (0) | 2020.12.06 |
[Baekjoon/Python3/C] 10869번 사칙연산 (0) | 2020.12.06 |
Comments