728x90
반응형
단순 사칙연산 문제이다.
a, b = map(int, input().split())
res = 1
for i in range(a, b+1):
res *= sum([j for j in range(1, i+1)])
print(res%14579)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 14656번 조교는 새디스트야!!(python) (0) | 2021.03.04 |
---|---|
백준 알고리즘 14614번 Calculate!(python) (0) | 2021.03.04 |
백준 알고리즘 14542번 Outer Triangle Sum(python) (0) | 2021.03.03 |
백준 알고리즘 14545번 Square(python) (0) | 2021.03.03 |
백준 알고리즘 14568번 2017 연세대학교 프로그래밍 경시대회(python) (0) | 2021.03.03 |