본문 바로가기
파이썬/백준

1977번 : 완전제곱수

by L_SU 2022. 9. 19.
M = int(input())
N = int(input())
gop = []
for i in range(M, N+1):
    j = i**(1/2)
    if j % 1 == 0:
        gop.append(int(j**2))
if len(gop) >= 1:
    print(sum(gop))
    print(gop[0])
else:
    print(-1)

'파이썬 > 백준' 카테고리의 다른 글

10807번: 개수 세기  (0) 2022.10.24
1712번 : 손익분기점  (0) 2022.09.26
1110번 : 더하기 사이클  (0) 2022.08.08
2089번 : -2진수  (0) 2022.07.23
10866번 : 덱  (0) 2022.07.22