forDevLife
[백준] 14659 - 한조서열정리하고옴ㅋㅋ 본문
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
int[] arr = new int[N];
StringTokenizer st = new StringTokenizer(br.readLine(), " ");
for(int i=0; i<N; i++) {
arr[i] = Integer.parseInt(st.nextToken());
}
int max = Integer.MIN_VALUE;
for(int i=0; i<N; i++) {
int count = 0;
for(int j=i+1; j<N; j++) {
if(arr[i] > arr[j]) {
count++;
} else
break;
}
max = Math.max(max, count);
}
System.out.println(max);
}
}
'알고리즘' 카테고리의 다른 글
[백준] 2839 - 설탕 배달 (0) | 2021.06.11 |
---|---|
[백준] 2828 - 사과 담기 게임 (0) | 2021.06.09 |
[백준] 11034 - 캥거루 세마리 2 (0) | 2021.06.09 |
[백준] 2720 - 세탁소 사장 동혁 (0) | 2021.06.09 |
[백준] 10162 - 전자레인지 (0) | 2021.06.08 |
Comments