Music Notes I


Submit solution

Points: 100 (partial)
Time limit: 2.0s
Memory limit: 64M

Author:
Problem type
Allowed languages
Ada, BrainF***, C, C#, C++, Dart, Go, Java, JS, Kotlin, Lua, Prolog, Python, Swift, VB

GJ will teach your cows how perform a song. The song consists of N(1N100) notes, and ith note lasts Bi times. Cows begin to perform the song at time 0; therefore touch them note 1 from time 0 to time B11, the note 2 from time B1 to time B1+B21, etc.

Cows have lost interest in the song, because they feel it is long and boring.Therefore, to be sure that their cows are paying attention, GJ makes them Q(1Q1.000) questions of form,During the time Ti (Ti song length) what notes should be playing?. The cows need your collaboration to answer these questions.

As an example, consider a song with these specifications: the note 1 lasts 2 times, the note 2 lasts 1 time and the note 3 lasts 3 times.

Copy
NOTE    1  1  2  3  3  3
     +--+--+--+--+--+--+
TIME    0  1  2  3  4  5

Input specification

Line 1: Two space-separated integers N and Q.

Lines 2 .. N+1: The line i+1 contains a single integer Bi.

Lines N + 2 .. N+Q+1: The line N+i+1 contains a single integer Ti.

Output specification

The answer to each question.

Sample input

Copy
3 5
2
1
3
2
3
4
0
1

Sample output

Copy
2
3
3
1
1

Comments

There are no comments at the moment.