[BOJ] 1977: 완전제곱수

HJW·2022년 8월 25일
0
  • 빈 리스트를 만들고 조건을 만족하는 요소를 append로 넣어준다.
m = int(input())
n = int(input())

total = 0
perfect_square_list = list()

for i in range(1, 101):
    perfect_square = i ** 2
    if m <= perfect_square <= n:
        perfect_square_list.append(perfect_square)

if(perfect_square_list == []):
    print(-1)

else:
    print(sum(perfect_square_list))
    print(min(perfect_square_list))
profile
be passionate

0개의 댓글