A. Death Note

链接:http://codeforces.com/contest/1016/problem/A

A. Death Note

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

扫描二维码关注公众号,回复: 5591326 查看本文章

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 Note with 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.

题目还是挺简单的,就是读题读半天。。。。

就是说有一个死亡笔记,先输入n和m,然后你可以在一页上面最多写上 m 个名字,一共写 n 天。再输入n个ai,就是你每天写上 ai 个名字,那么问你每天要翻几页。(在昨天的基础上又写了几页)注意每天的名字紧接上一天的,没写完的一页继续写

输出 i 个数字表示第 i 天又写了几页。

#include <bits/stdc++.h>
using namespace std;
int main()
{
    long long n,m,a,b;
    cin>>n>>m;
    a=0;
    for(int i=1;i<=n;i++)
    {
        cin>>b;
        a+=b;
        b=a/m;
        cout<<b<<" ";
        a=a%m;
    }
    return 0;
}

猜你喜欢

转载自blog.csdn.net/xyy731121463/article/details/81558818