컴공생의 다이어리

[파이썬, Python] 백준 2292번 : 벌집 본문

Development/Algorithm & Coding Test

[파이썬, Python] 백준 2292번 : 벌집

컴공 K 2021. 6. 5. 00:01

백준 2292번 : 벌집

(문제 바로가기)

 

 

내 코드

n=int(input())
count=1
num=1
while True:
    if num>=n:
        break
    num+=6*count
    count+=1
print(count)
728x90
Comments