글
프로그래머스 C# 세균 증식(for문 2씩 곱하기, P, J)
프로그래밍
2022. 12. 29. 16:24
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
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 암호 해독(주기, P, J) (0) | 2022.12.29 |
---|---|
프로그래머스 C# 대문자와 소문자(ToUpper(), ToLower()) Char.ToUpper(스트링), 스트링.ToUpper(),P,J) (0) | 2022.12.29 |
프로그래머스 C# n의 배수 고르기(List.Add, P, J) (0) | 2022.12.29 |
프로그래머스 C# 개미 군단(나머지와 몫 활용, P, J) (0) | 2022.12.29 |
프로그래머스 C# 모음 제거하기(Replace, string[] 만들고 +=, P, J) (0) | 2022.12.29 |