1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <iostream>
using namespace std;
typedef long long LL;

LL t[200009];
int p[200009];
int n;

LL f(int x){
	LL w=0;
	LL gdzie=0;
	for(int i=0; i<n; i++){
		if(gdzie+x > t[i]){
			w+=gdzie+x-t[i];
			gdzie+=x;
		}
		else
			gdzie=t[i];
	}
	return w;
}

int main(){
	ios::sync_with_stdio(0);
	int m;
	cin>>n>>m;
	for(int i=0; i<n; i++)
		cin>>t[i];
	for(int i=0; i<m; i++)
		cin>>p[i];
	
	for(int i=0; i<m; i++){
		cout<<f(p[i])<<"\n";
	}
	return 0;
}