Skip to content

Bacterial growth

1. Problem

해당 문제는 여기에서 확인하실 수 있습니다.

2. Answer

def solution(n, t):
  answer = n*(2**t)
  return answer