IT보안관의 공부 클라우드

[구름 Level1]막대기 본문

코딩 테스트/구름

[구름 Level1]막대기

ㅡㅡㅡㅡㄷ 2022. 6. 15. 21:48

https://level.goorm.io/exam/48193/%EB%A7%89%EB%8C%80%EA%B8%B0/quiz/1

 

구름LEVEL

코딩테스트에서 가장 높은 비중을 차지하는 알고리즘 문제를 제작하고 풀이할 수 있는 온라인 저지 서비스입니다. 기업에서 선호하는 C, C++, 파이썬(Python), 자바(Java), 자바스크립트(Javascript) 이

level.goorm.io

#입력
N = int(input())
arr1=[]
for i in range(N):
	arr1.append(int(input()))

_max=arr1[-1]
cnt=1

# 뒤에서 부터 for문 돌리기
for i in range(len(arr1)-1,-1,-1):
	if _max < arr1[i]:
		cnt += 1
		_max = arr1[i]
		
print(cnt)
Comments