#42008: python AC 解


deansuo1825@gmail.com (黃昱碩)

學校 : 不指定學校
編號 : 256775
來源 : []
最後登入時間 :
2023-11-25 09:56:15
o076. 1. 特技表演 -- 2024年6月APCS | From: [218.164.89.247] | 發表日期 : 2024-09-18 23:15

n=int(input())
h=list(map(int,input().split()))
total=1
t=[]
for i in range(0,n-1):
  if h[i]>h[i+1]:
    total+=1
    t.append(total)
  else:
    total=1
print(max(t))
 
ZeroJudge Forum