알고리즘

<백준> 2292번 파이썬 알고리즘

changha. 2021. 7. 8. 15:47
n = int(input())
res = 1
cnt = 1
six = 6
while n > res:
    cnt += 1
    res += six 
    six += 6
print(cnt)

 

규칙을 찾으면 간단하다

n+1, n 의 차이가 6씩 계속 증가한다