Notice
Recent Posts
Recent Comments
Link
«   2025/02   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28
Tags
more
Archives
Today
Total
관리 메뉴

forDevLife

[백준] 14659 - 한조서열정리하고옴ㅋㅋ 본문

알고리즘

[백준] 14659 - 한조서열정리하고옴ㅋㅋ

JH_Lucid 2021. 6. 9. 14:31

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