本文主要是介绍ccf201604-1折点计数(python100分),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
n=int(input())
a=list(map(int,input().split()))
count=0
for i in range(1,n-1):if((a[i]>a[i-1] and a[i]>a[i+1]) or (a[i]<a[i-1] and a[i]<a[i+1])):
#既然是折点,那么就是折点附近的两个点大于、小于折点的值count = count + 1
print(count)
嗷嗷,输入输出终于不报错啦!!!鼓掌鼓掌!!!!
这篇关于ccf201604-1折点计数(python100分)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!