https://school.programmers.co.kr/learn/courses/30/lessons/120910
문제 상황
어떤 세균은 1시간에 두배만큼 증식한다고 합니다. 처음 세균의 마리수 n과 경과한 시간 t가 매개변수로 주어질 때 t시간 후 세균의 수를 return하도록 solution 함수를 완성해주세요.
문제 풀이
class Solution {
public int solution(int n, int t) {
int answer = n * (int)Math.pow(2,t);
return answer;
}
}
다른 풀이
class Solution {
public int solution(int n, int t) {
int answer = 0;
answer = n << t;
return answer;
}
}
'알고리즘 > 기타' 카테고리의 다른 글
[백준] 2447 별 찍기 - 10 (분할정복) - Java (0) | 2023.05.10 |
---|---|
[프로그래머스] 주사위의 개수 - Java (0) | 2023.03.20 |
[프로그래머스] 순서쌍의 개수 - Java (0) | 2023.03.08 |
[프로그래머스] 자릿수 더하기 - Java (0) | 2023.03.07 |
[프로그래머스] 옷가게 할인 받기 - Java (0) | 2023.03.06 |