Notice
Recent Posts
Recent Comments
07-01 02:16
«   2024/07   »
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
Archives
Today
Total
관리 메뉴

Byeol Lo

N2903 - 중앙 이동 알고리즘 본문

Algorithm/Math

N2903 - 중앙 이동 알고리즘

알 수 없는 사용자 2024. 6. 15. 21:49

import java.util.Scanner;


public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        solution(sc.nextInt());
    }

    public static void solution(int n) {
        System.out.println((long) (Math.pow(4, n) + Math.pow(2, n+1) + 1));
    }
}

'Algorithm > Math' 카테고리의 다른 글

N11653 - 소인수분해  (0) 2024.06.22
N1193 - 분수찾기  (0) 2024.06.22
N13241 - 최소공배수 구하기  (0) 2024.06.15
Comments