浙南联合训练赛20180318

英语水平大考验

B - Worms

CodeForces - 474B

It is lunch time for Mole. His friend, Marmot, prepared him a nice game for lunch.

Marmot brought Molenordered piles of worms such thati-th pile containsaiworms. He labeled all these worms with consecutive integers: worms in first pile are labeled with numbers1toa1, worms in second pile are labeled with numbersa1 + 1toa1 + a2and so on. See the example for a better understanding.

Mole can't eat all the worms (Marmot brought a lot) and, as we all know, Mole is blind, so Marmot tells him the labels of the best juicy worms. Marmot will only give Mole a worm if Mole says correctly in which pile this worm is contained.

Poor Mole asks for your help. For all juicy worms said by Marmot, tell Mole the correct answers.

Input

The first line contains a single integern(1 ≤ n ≤ 105), the number of piles.

The second line containsnintegersa1, a2, ..., an(1 ≤ ai ≤ 103,a1 + a2 + ... + an ≤ 106), whereaiis the number of worms in thei-th pile.

The third line contains single integerm(1 ≤ m ≤ 105), the number of juicy worms said by Marmot.

The fourth line containsmintegersq1, q2, ..., qm(1 ≤ qi ≤ a1 + a2 + ... + an), the labels of the juicy worms.

Output

Printmlines to the standard output. Thei-th line should contain an integer, representing the number of the pile where the worm labeled with the numberqiis.

Example

Input

5<br />2 7 3 4 9<br />3<br />1 25 11

Output

1<br />5<br />3

Note

For the sample input:

  • The worms with labels from [1,2] are in the first pile.
  • The worms with labels from [3,9] are in the second pile.
  • The worms with labels from [10,12] are in the third pile.
  • The worms with labels from [13,16] are in the fourth pile.
  • The worms with labels from [17,25] are in the fifth pile.

就是给你的集合的前面让你二分的

#include <bits/stdc++.h>
using namespace std;
const int N=1e5+;
int a[N];
int main()
{
    int n,q;
    cin>>n;
    a[]=;
    for(int i=,x;i<=n;i++)
        cin>>x,a[i]=a[i-]+x;
    cin>>q;
    for(int i=,x;i<=q;i++)
    {
        cin>>x;
        int pos=lower_bound(a,a+n+,x)-a;
        if(a[pos]==x)pos++;
        cout<<pos<<"\n";
    }
}