세균 증식 Lv. 0

박영준·2023년 5월 31일
0

코딩테스트

목록 보기
182/300
class Solution {
    public int solution(int n, int t) {
        int answer = 0;
        return answer;
    }
}


해결법

방법 1

class Solution {
    public int solution(int n, int t) {
        return (int)(Math.pow(2, t)) * n;
    }
}
  • 예제를 메모에 그려보면 쉽게 해결 가능하다

방법 2

class Solution {
    public int solution(int n, int t) {

        for (int i = 0; i < t; i++) {
            n *= 2;
        }
        
        return n;
    }
}

세균 증식 Lv. 0

profile
개발자로 거듭나기!

0개의 댓글