https://www.acmicpc.net/problem/1377
1
2
3
4
5
6
7
8
9
10
11
12
13
|
n = int(input())
a = []
for i in range(n):
a.append((int(input()), i))
s = sorted(a)
max = 0
for i in range(n):
if max < s[i][1]-i:
max = s[i][1]-i
print(max+1)
|
cs |
'백준' 카테고리의 다른 글
백준 11004번: K번째 수 (0) | 2023.02.06 |
---|---|
백준 1427번: 소트인사이드 (0) | 2023.02.05 |
백준 2750번: 수 정렬하기 (1) | 2023.02.04 |
백준 11286번: 절댓값 힙 (0) | 2023.02.04 |
백준 17298번: 오큰수 (0) | 2023.02.03 |