☕Language: Java
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
|
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
public class Main {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
int totalDot = Integer.parseInt(br.readLine());
int total = 2;
int mul = 0;
for(int i=0; i<totalDot; i++) {
total = total + (total-1);
mul = total*total;
}
bw.write(mul + "");
bw.flush();
bw.close();
}
}
|
cs |
소스 코드
🔗 HJ0216/TIL/BOJ
'Computer > Algorithm_Java' 카테고리의 다른 글
[BaekJoon] 15894번 수학은 체육과목 입니다 문제풀이 (Success) (0) | 2023.06.01 |
---|---|
[BaekJoon] 9063번 대지 문제풀이 (Success) (0) | 2023.05.31 |
[BaekJoon] 10101번 삼각형 외우기 문제풀이 (Success) (0) | 2023.05.29 |
[BaekJoon] 5073번 삼각형과 세 변 문제풀이 (Success) (0) | 2023.05.28 |
[BaekJoon] 10757번 큰 수 A+B 문제풀이 (Success) (0) | 2023.05.26 |