본문 바로가기

개발자 세릴리/코딩테스트

[Softeer] Java - level2 문제풀이(8단변속기)

728x90
반응형

 

 

softeer 8단변속기(Java)

[문제]

현대자동차에서는 부드럽고 빠른 변속이 가능한 8단 습식 DCT 변속기를 개발하여 N라인 고성능차에 적용하였다. 관련하여 SW 엔지니어인 당신에게 연속적으로 변속이 가능한지 점검할 수 있는 프로그램을 만들라는 임무가 내려왔다.

당신은 변속기가 1단에서 8단으로 연속적으로 변속을 한다면 ascending, 8단에서 1단으로 연속적으로 변속한다면 descending, 둘다 아니라면 mixed 라고 정의했다.

변속한 순서가 주어졌을 때 이것이 ascending인지, descending인지, 아니면 mixed인지 출력하는 프로그램을 작성하시오.

 
[제약조건]

주어지는 숫자는 문제 설명에서 설명한 변속 정도이며, 1부터 8까지 숫자가 한번씩 등장한다.

 
[입력형식]

첫째 줄에 8개 숫자가 주어진다.

 
[출력형식]

첫째 줄에 ascending, descending, mixed 중 하나를 출력한다.

 

[풀이]

import java.util.*;
import java.io.*;


public class Main
{
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int[] ascending = {1, 2, 3, 4, 5, 6, 7, 8};
        int[] descending = {8, 7, 6, 5, 4, 3, 2, 1};
        String[] input = br.readLine().split(" ");
        int[] num = new int[8];
        for(int i=0; i<8; i++) {
            num[i] = Integer.parseInt(input[i]);
        }
        if(Arrays.equals(ascending, num)) System.out.println("ascending");
        else if(Arrays.equals(descending, num)) System.out.println("descending");
        else System.out.println("mixed");
        br.close();
    }
}

 

728x90
반응형