본문 바로가기

IT/알고리즘

백준 8단계(2292)

반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import java.util.Scanner;
 
public class Main {
    
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int n = scan.nextInt();
        
        // 1
        // 7 = 1 + 6
        //19 = 7 + 6 + 6
        //37 = 19 + 6 + 6 + 6
        //61 = 37 + 6 + 6 + 6 + 6
        int i = 1;
        int roomNum = 1;
        int addNum = 6;
        while(true) {
            if(n <= roomNum) break;
            roomNum += addNum;
            addNum += 6;
            i++;
        }
        System.out.println(i);
        
        //밑에 있는 방식도 위에 있는거랑 똑같은데.. 너무 내가 문제를 복잡하게 생각했다
//        if(n != 1) {
//            int a = 1;
//            for(i = 0; i < 10; i++) {
//                int second = a;
//                int first = 6 * (i + 1) + second;
////                System.out.println(i);
////                System.out.println(first + " " + second);
//                if(second < n && n <= first) {
//                    i++;
//                    break;
//                }
//                a = first;
//            }
//        }
    }
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
 
반응형

'IT > 알고리즘' 카테고리의 다른 글

백준 8단계(2869)  (0) 2019.12.15
백준 8단계(1193)  (0) 2019.12.14
백준 8단계(2839)  (0) 2019.12.14
백준 8단계(1712)  (0) 2019.12.10
백준 7단계(1316)  (0) 2019.12.10