문제
https://www.acmicpc.net/problem/10872
Algorithm
반복문을 사용해서 1부터 N 까지 곱해준다.
Code
n = int(input())
result = 1
if n > 0:
for i in range(1, n+1):
result *= i
print(result)
'Koala - 16기 > 코딩테스트 기초 스터디' 카테고리의 다른 글
[백준/Python] 10974번: 모든 순열 (0) | 2024.11.25 |
---|---|
[백준/Python] 2525번: 오븐 시계 (0) | 2024.11.18 |
[백준/Python] 17608번: 막대기 (0) | 2024.11.17 |
[백준/Python] 15649번: N과 M(1) (0) | 2024.11.11 |
[백준/Python] 15874번: 바이러스 (0) | 2024.11.10 |