백준 2292

ttomy·2022년 2월 21일
0
import sys

room_floor=1
room_max=1
n=int(sys.stdin.readline().rstrip())

while n>room_max:
    room_max=room_max+6*room_floor
    room_floor=room_floor+1


print(int(room_floor))

0개의 댓글