Skip to content

Commit

Permalink
[Bronze II] Title: 3000번 버스, Time: 32 ms, Memory: 33240 KB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
Youn-Rha committed Nov 6, 2024
1 parent 6b0d4cd commit b9a5b97
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
16 changes: 16 additions & 0 deletions 백준/Bronze/9546. 3000번 버스/3000번 버스.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import sys, math


# sys.setrecursionlimit(100000)


def input():
return sys.stdin.readline()


# main
if __name__ == "__main__":
T = int(input())
for _ in range(T):
N = int(input())
print(2 ** N - 1)
28 changes: 28 additions & 0 deletions 백준/Bronze/9546. 3000번 버스/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# [Bronze II] 3000번 버스 - 9546

[문제 링크](https://www.acmicpc.net/problem/9546)

### 성능 요약

메모리: 33240 KB, 시간: 32 ms

### 분류

사칙연산, 수학

### 제출 일자

2024년 11월 6일 19:12:16

### 문제 설명

<p>n명의 승객을 태우고 있는 3000번 버스는 강화에서부터 김포를 지나 신촌까지 가는 좌석버스이다. 3000번 버스는 버스 정류장마다 문을 연다. 그리고 정류장마다 타고 있는 승객의 수의 정확히 절반과 반 명(0.5명)의 승객이 내린다. 총 k개의 정류장에서 승객이 내렸고 마지막 정류장에서 승객이 없었으며 누구도 다치지 않았다면 맨 처음 타고있던 승객은 몇명인가.</p>

### 입력

<p>첫 번째 줄은 테스트 케이스의 수를 입력받는다. 각각의 테스트 케이스에는 정류장의 수 k를 입력받는다. 1 ≤ k ≤ 30.</p>

### 출력

<p>각각의 테스트 케이스는 한 줄에 처음 버스에 타고있던 승객의 수를 출력한다.</p>

0 comments on commit b9a5b97

Please sign in to comment.