Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
318003 123456 【C4-6】温度统计员 Python3 通过 100 63 MS 3772 KB 207 2025-04-17 20:11:50

Tests(4/4):


n=int(input()) a=list(map(int,input().split())) ma=1 c=1 for i in range(1,n): if a[i]>a[i-1]: c+=1 else: if c>ma: ma=c c=1 if c>ma: ma=c print(ma)


测评信息: