본문 바로가기
python-algorithm

codeforces 155A - I_love_\%username\%

by 무적김두칠 2022. 4. 29.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
n=int(input())
cnt = 0
 
nums=list(map(int, input().split()))
strat_min=nums[0]
strat_max=nums[0]
for i in range(1,n) :
    if strat_min < nums[i] :
        cnt+=1
        strat_min=nums[i]
    if strat_max > nums[i] :
        cnt+=1
        strat_max=nums[i]
print(cnt)
cs
반응형

댓글