Educational Codeforces Round 48 (Rated for Div. 2)--A. Death Note(模拟)

A. Death Note

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

You received a notebook which is called Death Note. This notebook has infinite number of pages. A rule is written on the last page (huh) of this notebook. It says: "You have to write names in this notebook during nn consecutive days. During the ii-th day you have to write exactly aiai names.". You got scared (of course you got scared, who wouldn't get scared if he just receive a notebook which is named Death Notewith a some strange rule written in it?).

Of course, you decided to follow this rule. When you calmed down, you came up with a strategy how you will write names in the notebook. You have calculated that each page of the notebook can contain exactly mm names. You will start writing names from the first page. You will write names on the current page as long as the limit on the number of names on this page is not exceeded. When the current page is over, you turn the page. Note that you always turn the page when it ends, it doesn't matter if it is the last day or not. If after some day the current page still can hold at least one name, during the next day you will continue writing the names from the current page.

Now you are interested in the following question: how many times will you turn the page during each day? You are interested in the number of pages you will turn each day from 11 to nn.

Input

The first line of the input contains two integers nn, mm (1≤n≤2⋅1051≤n≤2⋅105, 1≤m≤1091≤m≤109) — the number of days you will write names in the notebook and the number of names which can be written on each page of the notebook.

The second line contains nn integers a1,a2,…,ana1,a2,…,an (1≤ai≤1091≤ai≤109), where aiai means the number of names you will write in the notebook during the ii-th day.

Output

Print exactly nn integers t1,t2,…,tnt1,t2,…,tn, where titi is the number of times you will turn the page during the ii-th day.

Examples

input

Copy

3 5
3 7 9

output

Copy

0 2 1 

input

Copy

4 20
10 9 19 2

output

Copy

0 0 1 1 

input

Copy

1 100
99

output

Copy

0 

Note

In the first example pages of the Death Note will look like this [1,1,1,2,2],[2,2,2,2,2],[3,3,3,3,3],[3,3,3,3][1,1,1,2,2],[2,2,2,2,2],[3,3,3,3,3],[3,3,3,3]. Each number of the array describes during which day name on the corresponding position will be written. It is easy to see that you should turn the first and the second page during the second day and the third page during the third day.

思路:

模拟一遍,不足m输出0 , t取a , 超出m , 输出(a+t)/m , t = (a+t)%m;

代码:

#include <bits/stdc++.h>
using namespace std;
int main()
{
	int n , m , a;
	while(~scanf("%d %d" , &n , &m))
	{
		int t=0;
		for(int i = 1 ; i <= n ; i++)
		{
			scanf("%d" , &a);
			if((a+t) < m)
			{
				t = t+a;
				printf("0 ");
			}
			else
			{
			
				printf("%d " , (a+t)/m);
				t = (a+t)%m;
			}
		}
		printf("\n");
	}
	return 0;
 } 

猜你喜欢

转载自blog.csdn.net/qq_41593380/article/details/81582780