Search

세균 증식

태그
코딩테스트 입문
class Solution { public int solution(int n, int t) { for (int i = 0; i < t; i++) { n *= 2; } return n; } }
Java
복사