본문 바로가기
알고리즘 문제풀이/Programmers - 자바

프로그래머스 - 세균 증식

by 올리브영 2023. 3. 5.
728x90
반응형
class Solution {
    public int solution(int n, int t) {
        for(int i=0; i<t; i++){
            n *= 2;
        }
        return n;
    }
}
728x90
반응형