天天看點

LeetCode: Reverse Nodes in k-Group [024] Magic Pen 6

題目連結:http://acm.hdu.edu.cn/showproblem.php?pid=4648

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others)

Total Submission(s): 1857    Accepted Submission(s): 637

Problem Description

In HIT, many people have a magic pen. Lilu0355 has a magic pen, darkgt has a magic pen, discover has a magic pen. Recently, Timer also got a magic pen from seniors.

At the end of this term, teacher gives Timer a job to deliver the list of N students who fail the course to dean‘s office. Most of these students are Timer‘s friends, and Timer doesn‘t want to see them fail the course. So, Timer decides to use his magic pen

to scratch out consecutive names as much as possible. However, teacher has already calculated the sum of all students‘ scores module M. Then in order not to let the teacher find anything strange, Timer should keep the sum of the rest of students‘ scores module

M the same.

Plans can never keep pace with changes, Timer is too busy to do this job. Therefore, he turns to you. He needs you to program to "save" these students as much as possible.

Input

There are multiple test cases.

The first line of each case contains two integer N and M, (0< N <= 100000, 0 < M < 10000),then followed by a line consists of N integers a1,a2,...an (-100000000 <= a1,a2,...an <= 100000000) denoting

the score of each student.(Strange score? Yes, in great HIT, everything is possible)

Output

For each test case, output the largest number of students you can scratch out.

Sample Input

Sample Output

Source

Recommend

zhuyuanchen520   |   We have carefully selected several similar problems for you:       

簡單題,len從大到小,(sum[j+len]-sum[j])%M==0 len即為所求。

繼續閱讀