404402: GYM101498 G Super Subarray
Memory Limit:256 MB
Time Limit:4 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
G. Super Subarraytime limit per test4 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output
In this problem, subarray is defined as non-empty sequence of consecutive elements.
We define a subarray as Super Subarray if the summation of all elements in the subarray is divisible by each element in it.
Given an array a of size n, print the number of Super Subarrays in a.
InputThe first line of the input contains a single integer T (1 ≤ T ≤ 100), the number of test cases.
The first line of each test case contains one integer n (1 ≤ n ≤ 2000), the length of array a.
The second line of each test case contains the sequence of elements of the array a1, a2, ..., an (1 ≤ ai ≤ 109), ai is the i-th element of the array a.
OutputFor each test case, print a single integer that represents the number of Super Subarrays in a, on a single line.
ExampleInput2Output
5
1 2 3 4 5
5
2 3 4 3 6
6
6