import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
System.out.println(solution(x));
}
static int solution(int x) {
int result = 1;
int range = 1;
while(range < x) {
range += 6*result;
result++;
}
return result;
}
}
'알고리즘왕 > BOJ' 카테고리의 다른 글
[JAVA/백준/8983] 사냥꾼 (0) | 2021.01.12 |
---|---|
[백준/1193/JAVA] 분수찾기 (0) | 2020.03.18 |
[백준/2839/JAVA] 설탕 배달 (0) | 2020.03.18 |
[백준/1712/JAVA] 손익분기점 (0) | 2020.03.18 |
[백준/1316/JAVA] 그룹 단어 체커 (0) | 2020.03.18 |