#E. [USACO16JAN] Subsequences Summing to Sevens S

    传统题 1000ms 256MiB

[USACO16JAN] Subsequences Summing to Sevens S

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

题目描述

Farmer John's NN cows are standing in a row, as they have a tendency to do from time to time. Each cow is labeled with a distinct integer ID number so FJ can tell them apart. FJ would like to take a photo of a contiguous group of cows but, due to a traumatic childhood incident involving the numbers 161 \ldots 6, he only wants to take a picture of a group of cows if their IDs add up to a multiple of 7.

Please help FJ determine the size of the largest group he can photograph.

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

输入格式

The first line of input contains NN (1N1,000,0001 \leq N \leq 1,000,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).

输出格式

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.

样例 #1

样例输入 #1

7
3
5
1
6
2
14
10

样例输出 #1

5

提示

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

对于50%50\%的数据,n1000n\leq1000

对于100%100\%的数据,1N1,000,0001\leq N \leq 1,000,000

2024.11.24 城阳 提高组

未参加
状态
已结束
规则
IOI
题目
6
开始于
2024-11-24 8:30
结束于
2024-11-24 11:30
持续时间
3 小时
主持人
参赛人数
11