#include <stdio.h>
#include <string.h>
#include <stdlib.h>
using namespace std;
#define _CRT_SECURE_NO_WARNINGS
#include <algorithm>
#include <vector>
int main() {
// freopen
int n, i, pre, now, cnt, max;
scanf("%d", &n); // 메커니즘상 하나더 추가
scanf("%d", &pre);
cnt=1, max=1;
for(i=2; i<= n; i++) {
scanf("%d", &now);
if(now >= pre) {
cnt++;
if(cnt > max) max = cnt;
}
else cnt = 1; // 초기화 해서 다시 출발
pre = now;
}
printf("%d\n", max);
return 0;
}
'코딩테스트' 카테고리의 다른 글
석차 구하기 (브루트포스) (0) | 2024.09.18 |
---|---|
유쾌한 점퍼 Jolly Jumpers (0) | 2024.09.18 |
온도의 최댓값 (1차원 배열 구간합 : 제한시간 1초) (0) | 2024.09.17 |
카드 게임 (기본코딩 설계) (0) | 2024.09.17 |
가위 바위 보 (기본코딩 설계) (0) | 2024.09.17 |