题目:
在果园里有N堆苹果,每堆苹果的数量为ai,小易希望知道从左往右数第x个苹果是属于哪一堆的。
描述:
输入: 第一行一个数n(1 <= n <= 105)。
第二行n个数ai(1 <= ai <= 1000),表示从左往右数第i堆有多少苹果
第三行一个数m(1 <= m <= 105),表示有m次询问。
第四行m个数qi,表示小易希望知道第qi个苹果属于哪一堆。
输出: m行,第i行输出第qi个苹果属于哪一堆。
样例:
输入:
5
2 7 3 4 9
3
1 25 11
输出:
1
5
3
代码
public class AppleLocation {
public static int check(int[] appcount,int apps,int count) {
int init=0;
int i=0;
int lastindex=0;
while(init<apps) {
int index = i%count;
init=init+appcount[index];
lastindex = index;
i++;
}
return lastindex+1;
}
public static void main(String[] args) {
Scanner sc= new Scanner(System.in);
int count = sc.nextInt();
int[] appcount = new int[count];
for(int i=0;i<count;i++) {
appcount[i] = sc.nextInt();
}
int askcount = sc.nextInt();
int[] ask = new int[askcount];
for(int i=0;i<askcount;i++) {
ask[i] = sc.nextInt();
}
for(int i=0;i<askcount;i++) {
int a = check(appcount,ask[i],count);
System.out.println(a);
}
}
}