https://softeer.ai/practice/6280/history?questionType=ALGORITHM
import sys
n = int(input())
dp = [0]*(n+1)
dp[0] = 2
for i in range(1, n+1):
dp[i] = 2*dp[i-1]-1
print(dp[n]**2)
[소프티어] 스마트 물류 (0) | 2024.02.01 |
---|---|
[소프티어] 우물 안 개구리 (1) | 2024.01.31 |
[소프티어] 강의실 배정 (0) | 2024.01.30 |
[소프티어] GBC (0) | 2024.01.30 |
[소프티어] 장애물 인식 프로그램 (1) | 2024.01.30 |