시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 1024 MB2010763.636%

문제

"47 is the quintessential random number," states the 47 society. And there might be a grain of truth in that.

For example, the first ten digits of the Euler's constant are:

2 7 1 8 2 8 1 8 2 8

And what's their sum? Of course, it is 47.

Try walking around with your eyes open. You may be sure that soon you will start discovering occurences of the number 47 everywhere.

You are given a sequence S of integers we saw somewhere in the nature. Your task will be to compute how strongly does this sequence support the above claims.

We will call a continuous subsequence of S interesting if the sum of its terms is equal to 47.

E.g., consider the sequence S = (24, 17, 23, 24, 5, 47). Here we have two interesting continuous subsequences: the sequence (23, 24) and the sequence (47).

Given a sequence S, find the count of its interesting subsequences.

입력

The first line of the input file contains an integer T specifying the number of test cases. Each test case is preceded by a blank line.

The first line of each test case contains the length of a sequence N. The second line contains N space-separated integers Ai – the elements of the sequence.

출력

For each test case output a single line containing a single integer – the count of interesting subsequences of the given sentence.

Easy (1점)

  • 1 ≤ N ≤ 1,000,000
  • 1 ≤ Ai < 20,000

Hard (2점)

  • 1 ≤ N ≤ 500,000
  • -1000 < Ai < 1,000

예제 입력 1

2

13
2 7 1 8 2 8 1 8 2 8 4 5 9

7
2 47 10047 47 1047 47 47

예제 출력 1

3
4

힌트

  • 1 ≤ T ≤ 7

출처

Contest > Internet Problem Solving Contest > IPSC 2006 C번

  • 데이터를 추가한 사람: kyo20111

채점 및 기타 정보

  • 예제는 채점하지 않는다.