각 블럭에서 선택할 수 있는 경우의 수는 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승으로 작성해서 오답이 났다. 브론즈라고 대충 풀지 말 것..