[Python] 백준 1977번 : 완전제곱수
2021. 5. 4. 23:31
m = int(input())
n = int(input())
square = []
i = 1
while i**2 <= n:
if m <= i**2 <= n:
square.append(i**2)
i+=1
if square == []:
print(-1)
else:
print(sum(square))
print(square[0])
'Programming > BOJ' 카테고리의 다른 글
[Python] 백준 1026번 : 보물 (0) | 2021.08.19 |
---|---|
백준 문제집 모음 (0) | 2021.07.27 |
[Python] 백준 2525번 : 오븐 시계 (0) | 2021.04.10 |
[Python] 백준 10699번 : 오늘 날짜 (0) | 2021.04.09 |
[Python] 백준 2163번 : 초콜릿 자르기 (0) | 2021.04.09 |