728x90
반응형
문제 링크
https://www.acmicpc.net/problem/10872
풀이
n = int(input())
answer=1
for i in range(1,n+1):
answer = answer * i
print(answer)
728x90
반응형
'알고리즘 정복하기! > 백준 문제풀이' 카테고리의 다른 글
백준 2292번 Python / Math (0) | 2022.02.09 |
---|---|
백준 1978번 Python / Math (0) | 2022.02.08 |
백준 2908번 Python / Math (0) | 2022.02.08 |
백준 4673번 Python / Math (0) | 2022.02.08 |
백준 3502번 Python / Math (0) | 2022.02.08 |
댓글