[BOJ / C++] 9546 3000번 버스

Seulguo·2022년 7월 21일
0

Algorithm

목록 보기
112/185
post-thumbnail

🐣 문제

링크 : https://www.acmicpc.net/problem/9546


🐥 코드

/*
문제 : 3000번 버스 
링크 : https://www.acmicpc.net/problem/9546
*/

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

int main(){
    int n; 
    cin >> n;

    for(int i = 0; i < n; i++){
        int tmp;
        cin >> tmp;
        int cnt = 1;
        int pre = 1;
        for(int j = 1; j < tmp; j++){
            cnt += (pre * 2);
            pre = pre * 2;
        }

        cout << cnt << '\n';
    }
    return 0;
}

0개의 댓글