문제링크
https://www.acmicpc.net/problem/2920
나의코드
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.util.StringTokenizer;
public class Main{
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine(), " ");
int[] arr = new int[8];
for(int i = 0; i < 8; i++){
arr[i] = Integer.parseInt(st.nextToken());
}
boolean asc = true;
boolean dsc = true;
for(int j = 1; j < 8; j++){
if(arr[j] >= arr[j - 1]){
dsc = false;
}else if(arr[j] <= arr[j - 1]){
asc = false;
}
}
if(asc){
System.out.print("ascending");
}else if(dsc){
System.out.print("descending");
}else{
System.out.print("mixed");
}
}
}
'Baekjoon Online Judge' 카테고리의 다른 글
[BOJ] 백준 1018번: 체스판 다시 칠하기 (Java) (0) | 2023.03.30 |
---|---|
[BOJ] 백준 1085번: 직사각형에서 탈출 (Java) (0) | 2023.03.29 |
[BOJ] 백준 2742번: 기찍 N (Java) (0) | 2023.03.27 |
[BOJ] 백준 2741번: N 찍기 (Java) (0) | 2023.03.26 |
[BOJ] 백준 2577번: 숫자의 개수 (Java) (0) | 2023.03.25 |
댓글