-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Bronze II] Title: 3000번 버스, Time: 32 ms, Memory: 33240 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|