반응형
https://school.programmers.co.kr/learn/courses/30/lessons/120910
import kotlin.math.pow
class Solution {
fun solution(n: Int, t: Int): Int {
var answer: Int = 0
// 시간당 늘어나는 세균 수
// int를 double로, double에서 int로 형변환 필요
answer = 2.toDouble().pow(t).toInt()
// 초기 세균수에 곱하기
answer *= n
return answer
}
}
와 ps 얼마만인거지ㅋㅋㅋ
반응형
'IT > 알고리즘' 카테고리의 다른 글
70] Leetcode 1929. Concatenation of Array (0) | 2023.04.03 |
---|---|
69] 프로그래머스 제곱수 판별하기 Kotlin (1) | 2023.03.21 |
67] kotlin 프로그래머스/ 행렬의 덧셈 (0) | 2021.09.29 |
66] Kotlin 프로그래머스 / x만큼 간격이 있는 n개의 숫자 (0) | 2021.09.28 |
65] Kotlin 프로그래머스 음양 더하기 (0) | 2021.09.28 |
댓글