[C++] 백준 24723. 녹색거탑

멋진감자·2024년 12월 11일
1

알고리즘

목록 보기
37/64
post-thumbnail

문제

풀이

각 블럭에서 선택할 수 있는 경우의 수는 2이므로
2의 n승이 답이다.

코드

#include <iostream>
#include <cmath>
using namespace std;

int main() {
	int n;
	cin >> n;
	cout << pow(2, n);
	return 0;
}

채점

처음에는 cmath가 없어서 컴파일 에러
다음엔 n의 2승으로 작성해서 오답이 났다.
브론즈라고 대충 풀지 말 것..

profile
난멋져

0개의 댓글