Dev.baelanche

[백준 2903] 중앙 이동 알고리즘 본문

Data Structure & Algorithm/PS - JAVA

[백준 2903] 중앙 이동 알고리즘

baelanche 2019. 6. 29. 17:53
반응형

 

점의 개수가 9, 25, 81 ... 순으로 늘어난다.

위 수는 1 + (2^1), 1 + (2^2), 1 + (2^3) 으로 바꿔줄 수 있다.

 

따라서 1 + (2^n) 이 점의 개수이다.

 

public class Main {
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();
        
        long dot = 1 + (long)Math.pow(2, n);
        System.out.println(dot * dot);
    }
}
반응형

'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글

[백준 1652] 누울 자리를 찾아라  (0) 2019.07.02
[백준 1915] 가장 큰 정사각형  (0) 2019.07.02
[백준 1057] 토너먼트  (0) 2019.06.29
[백준 10815] 숫자 카드  (0) 2019.06.29
[백준 1009] 분산처리  (0) 2019.06.29
Comments