https://www.acmicpc.net/problem/2292
// 각 단계에서 가장 큰 숫자를 따라가니까 계차수열이네.
// 프로덕션코드
import java.util.Scanner;
public class Quiz2292 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int N = scanner.nextInt();
System.out.println(checkMinimumStep(N));
}
static int checkMinimumStep(int N) {
int step = 1;
int theLargestNumberInAStep = 1;
if (N == 1) {
return step;
}
while (true) {
int Interval = 6 * step;
theLargestNumberInAStep += Interval;
step++;
if (N <= theLargestNumberInAStep) {
return step;
}
}
}
}
// 성공! 1일때는 바로 리턴해주고 2부터는 while문에서 해결
'코딩테스트연습 > 백준' 카테고리의 다른 글
[백준 - JAVA] 1920번 : 수 찾기 (1) | 2021.12.27 |
---|---|
[백준 - JAVA] 2775번 부녀회장이 될테야 (0) | 2021.12.18 |
[백준 - JAVA] 10814번 나이순 정렬 (0) | 2021.12.15 |
[백준 - JAVA] 1181번 단어 정렬 (0) | 2021.12.15 |
[백준 - JAVA] 11650번 좌표 정렬하기 (0) | 2021.12.15 |