반응형
문제 정보
제출 코드
# 육각형이 하나씩 생길 때마다 숫자는 6의 배수*육각형 수만큼 늘어났음 (6, 12, 18, 24)
n = int(input())
if(n==1):
print(1)
exit()
total = 2
count = 7
count_m = 2
while(True):
if(n>count):
count += 6*count_m
count_m += 1
total += 1
else:
print(total)
break
'Study > 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 2869번 Python (0) | 2021.10.04 |
---|---|
[백준 알고리즘] 1193번 Python (0) | 2021.10.04 |
[백준 알고리즘] 1712번 Python (0) | 2021.10.04 |
[백준 알고리즘] 1978번 Python (0) | 2021.10.04 |
[백준 알고리즘] 1316번 Python (0) | 2021.10.04 |
댓글