#include <stdio.h>
#include <string.h>
#include <stdlib.h>
using namespace std;
#define _CRT_SECURE_NO_WARNINGS
#include <algorithm>
int main() {
// freopen
int n, a, val, i, cnt =0, max = -2147000000;
scanf("%d %d", &n, &val);
for(i=1; i<=n; i++) {
scanf("%d", &a);
if(a > val) cnt++;
else cnt = 0;
if(cnt > max) max = cnt;
}
if(max == 0) printf("-1 \n");
else printf("%d\n", max);
return 0;
}
'코딩테스트' 카테고리의 다른 글
카드 게임 (기본코딩 설계) (0) | 2024.09.17 |
---|---|
가위 바위 보 (기본코딩 설계) (0) | 2024.09.17 |
Anagram (아나그램 : 구글 인터뷰 문제) (0) | 2024.09.17 |
소수의 갯수 (제한시간 1초) (0) | 2024.09.17 |
가장 많이 사용된 자릿 수 (0) | 2024.09.17 |