728x90
https://www.acmicpc.net/problem/1668
손 풀 겸 쉬운 브론즈 문제
# import sys; input = sys.stdin.readline
def main():
N = int(input())
tropy = [int(input()) for _ in range(N)]
ans = ''
max_h, ret = 0, 0
for i in range(len(tropy)):
if max_h < tropy[i]:
max_h = tropy[i]
ret += 1
ans += str(ret)+'\n'
max_h, ret = 0, 0
for i in range(len(tropy)-1,-1,-1):
if max_h < tropy[i]:
max_h = tropy[i]
ret += 1
ans += str(ret)
print(ans)
if __name__ == "__main__":
main()
'STUDY > Algorithm' 카테고리의 다른 글
[백준] 9489 사촌 python (0) | 2022.01.11 |
---|---|
[백준] 20365 블로그 2 python (0) | 2022.01.11 |
[백준] 1956 운동 python(pypy) (0) | 2022.01.10 |
[백준]11401 이항 계수 3, python (0) | 2022.01.09 |
[백준] 14284 간선 이어가기 2, python, C++ (0) | 2022.01.08 |