Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
29 | 30 | 31 |
Tags
- 2605
- 2506
- 2476
- 정보보호 영재교육원
- 영재원
- 공주대 정보보호
- Best of the Best
- 2965
- Python
- 10995
- 2501
- 차세대 보안 리더 양성 프로그램
- 리뷰
- boj
- 10833
- EOF
- BoB 7기
- 5586
- acmicpc
- 1547
- 5086
- BOB
- text
- 11109
- 영재교육원
- BoB 후기
- 11943
- 4101
- 차세대 보안 리더 양성
- 정보보호 영재원
Archives
- Today
- Total
짱해커가 되어보자
boj 14659 본문
* Solved 기준 브론즈2 단순 풀이
input(); l = list(map(int, input().split())); L,M = len(l),0
for i in range(L):
if(i>=1 and M >= len(l[i+1:])): break
m = 0
for j in range(i+1,L):
if(l[i]>l[j]): m+=1
else: break
M = m if m>M else M
print(M)
Comments