#585. 最长的连续区间和是7的倍数

最长的连续区间和是7的倍数

No submission language available for this problem.

Background

巴拉巴拉巴拉

Description

给你n个数,分别是a[1],a[2],...,a[n]。求一个最长的区间[x,y],使得区间中的数(a[x],a[x+1],a[x+2],...,a[y-1],a[y])的和能被7整除。输出区间长度。若没有符合要求的区间,输出0。

Format

Input

The first line of input contains NN (1N50,0001 \leq N \leq 50,000). The next NN

lines each contain the NN integer IDs of the cows (all are in the range

01,000,0000 \ldots 1,000,000).

Output

Please output the number of cows in the largest consecutive group whose IDs sum

to a multiple of 7. If no such group exists, output 0.

Samples

7
3
5
1
6
2
14
10
5

Samples Prompt

In this example, 5+1+6+2+14 = 28.

Limitation

1s, 1024KiB for each test case.