본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 27246번 Различные квадраты

by 현장 2024. 12. 27.

-Code

n = int(input())
now, res = 1, 0

while n >= now ** 2:
    n -= now ** 2
    res += 1
    now += 1

print(res)