글
프로그래머스 C# 주사위의 개수(몫 곱하기, P, J)
프로그래밍
2022. 12. 30. 12:16
728x90
SMALL
using System;
public class Solution {
public int solution(int[] box, int n) {
int answer = 0;
answer += box[0]/n;
answer *= box[1]/n;
answer *= box[2]/n;
return answer;
}
}
파이썬
def solution(box, n):
x, y, z = box
return (x // n) * (y // n) * (z // n )
자바
class Solution {
public int solution(int[] box, int n) {
int answer = 1;
answer *= box[0]/n;
answer *= box[1]/n;
answer *= box[2]/n;
return answer;
}
}
자바
class Solution {
public int solution(int[] box, int n) {
int answer = 1;
answer *= box[0]/n;
answer *= box[1]/n;
answer *= box[2]/n;
return answer;
}
}
class Solution {
public int solution(int[] box, int n) {
int answer = 0;
for(int length : box)
{
if(answer == 0)
{
answer = length / n;
}
else
{
answer *= length / n;
}
}
return answer;
}
}
class Solution {
public int solution(int[] box, int n) {
int answer = (box[0] / n) * (box[1] / n) * (box[2] / n);
return answer;
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 약수 구하기(List.Add, List.ToArray(), P, J) (0) | 2022.12.30 |
---|---|
프로그래머스 C# 가장 큰 수 찾기(array.Max(), Array.IndexOf(array, array.Max()), P, J) (0) | 2022.12.30 |
프로그래머스 C# 가위 바위 보(string +=, 삼항연산자 가능, P, J) (0) | 2022.12.29 |
프로그래머스 C# 문자열 정렬하기 (1) (문자열에 있는 숫자를 int로 바꾸기, P, J) (0) | 2022.12.29 |
프로그래머스 C# 암호 해독(주기, P, J) (0) | 2022.12.29 |