728x90
SMALL

using System;

public class Solution {
    public int solution(int n, int t) {
        
        for(int i=1;i<=t;i++)
        {
            n = 2*n;
        }
        
        return n;
    }
}

 

파이썬

////

def solution(n, t):
    answer = 2**t * n
    return answer

 

비트연산

////

 

def solution(n, t):
    return n << t

 

 

자바

 

 

class Solution {
    public int solution(int n, int t) {
        int answer = 0;

        answer = n << t;

        return answer;
    }
}

 

 

class Solution {
    public int solution(int n, int t) {
        int answer = n;
        
        for(int i=1; i<=t; i++)
        {
            answer *= 2;
        }
        return answer;
    }
}

728x90

설정

트랙백

댓글