글
C# 카펫 - 완전탐색
프로그래밍
2023. 1. 29. 12:44
728x90
SMALL
using System;
using System.Numerics;
public class Solution
{
public int[] solution(int brown, int yellow)
{
int[] answer = new int[] { 3, 3 };
int y;
int width = brown + yellow;
for (int x = 1; x <= width; x++)
{
y = width / x;
if(x < y)
continue;
if ((width - ((x * 2) + (y * 2) - 4)) == yellow)
{
answer[0] = x;
answer[1] = y;
return answer;
}
}
return answer;
}
}
/// 다른 분의 코드가 너무 잘 되어 있어서 ㅠ
728x90
'프로그래밍' 카테고리의 다른 글
LG CNS 스마트팩토리(미국) 코딩 테스트 본 사람은 없나... (0) | 2023.01.29 |
---|---|
C# ASCII(아스키) 코드 숫자로 변환하기 (0) | 2023.01.29 |
프로그래머스 C# OX퀴즈(JAVA) (0) | 2023.01.28 |
프로그래머스 C# 빈칸 채우기(예시) (0) | 2023.01.28 |
프로그래머스 C# 나머지 한 점 좌표 출력(직사각형, XOR) (0) | 2023.01.28 |