Андрей Филиппов 608 MaxSubseq 858
Диана Бочковенкова, 630 группа MaxSubseq 986
n1x_prev = int(input())n1prev = int(input())
2result = 12max = 1
3max_result = 13count = 1
4while True:4while True:
n5    x_cur = int(input())n5    cur = int(input())
6    if x_cur == 0:6    if cur == 0:
7        break7        break
n8    if x_cur >= x_prev:n8    if cur >= prev:
9        result += 19        count += 1
10    else:10    else:
t11        if max_result < result:t11        if count > max:
12            max_result = result12            max = count
13        result = 113        count = 1
14    x_prev = x_cur14    prev = cur
15if max_result < result:15if count > max:
16    max_result = result16    max = count
17print(max_result)17print(max)
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op