728x90
반응형
단순 사칙연산 문제이다.
A, B = map(int, input().split())
li = []
t = cnt = 1
for _ in range(B):
li.append(t)
if t == cnt:
cnt = 0
t += 1
cnt += 1
print(sum(li[A-1:B]))
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 10822번 더하기(python) (0) | 2021.03.09 |
---|---|
백준 알고리즘 10275번 골드 러시(python) (0) | 2021.03.09 |
백준 알고리즘 8741번 이진수 합(python) (0) | 2021.03.09 |
백준 알고리즘 7572번 간지(干支)(python) (0) | 2021.03.09 |
백준 알고리즘 6318번 Box of Bricks(python) (0) | 2021.03.09 |