본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 28014번 첨탑 밀어서 부수기

by 현장 2023. 6. 1.

-Code

n = int(input())
height = list(map(int, input().split()))
res = 1

for i in range(n - 1):
    if height[i] <= height[i + 1]:
        res += 1
print(res)