공부하기/백준

[Java] 백준 풀기 4589 - Gnome Sequencing

XEV 2023. 3. 20. 23:57

자바 백준 4589번

브론즈 4

https://www.acmicpc.net/problem/4589

 

4589번: Gnome Sequencing

In the book All Creatures of Mythology, gnomes are kind, bearded creatures, while goblins tend to be bossy and simple-minded. The goblins like to harass the gnomes by making them line up in groups of three, ordered by the length of their beards. The gnomes

www.acmicpc.net

 

 

 

 

 

문제 보기

분류: 구현

 

 

 

 

 

문제 풀기

테스트 케이스만큼 반복문을 실행하면서 주어진 입력값들을 세 개씩 저장한다.

세 개의 수에 앞의 두 수와 뒤의 두 수의 크기를 비교하여 오름차순 또는 내림차순을 만족하면 "Ordered" 를 출력하고 그렇지 않으면 "Unordered" 를 출력한다.

답안 제출시 주의할 점으로 맨 위의 "Gnomes:" 를 먼저 출력해 주고 판단 결과를 출력해 줘야 한다.

 

 

 

 

 

코드 보기

import java.util.Scanner;

public class Main {
    public static void main(String args[]) {

        Scanner sc = new Scanner(System.in);
        
        int testCase = sc.nextInt();
        System.out.println("Gnomes:");
        for (int i = 0; i < testCase; i++) {
            int height1 = sc.nextInt();
            int height2 = sc.nextInt();
            int height3 = sc.nextInt();
            
            if ((height1 > height2 && height2 > height3) || (height1 < height2 && height2 < height3)) {
                System.out.println("Ordered");
            }
            else {
                System.out.println("Unordered");
            }
            
        }
    }
}