import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
br.close();
int count = 0;
if (N == 1) {
count = 1;
} else {
while (N > 1) {
N -= (6 * count);
count++;
}
}
System.out.println(count);
}
}
벌집 규칙을 찾는다고 세다가 눈이 빙글빙글 돌았다 😵💫
규칙은 1 - 6 - 12 - 18 등 외각으로 한 칸 이동할 때마다 외각의 숫자 수가 6씩 늘어난다.
N이 1인 경우 제자리니까 1칸이고
외각으로 한칸 이동할 때마다 6을 감소시켜 최소거리를 구하도록 하였다.