CF223C.Partial Sums

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You've got an array aa , consisting of nn integers. The array elements are indexed from 1 to nn . Let's determine a two step operation like that:

  1. First we build by the array aa an array ss of partial sums, consisting of nn elements. Element number ii ( 1<=i<=n1<=i<=n ) of array ss equals . The operation x mod yx mod y means that we take the remainder of the division of number xx by number yy .
  2. Then we write the contents of the array ss to the array aa . Element number ii ( 1<=i<=n1<=i<=n ) of the array ss becomes the ii -th element of the array aa ( ai=sia_{i}=s_{i} ).

You task is to find array aa after exactly kk described operations are applied.

输入格式

The first line contains two space-separated integers nn and kk ( 1<=n<=20001<=n<=2000 , 0<=k<=1090<=k<=10^{9} ). The next line contains nn space-separated integers a1,a2,...,ana_{1},a_{2},...,a_{n} — elements of the array aa ( 0<=ai<=1090<=a_{i}<=10^{9} ).

输出格式

Print nn integers — elements of the array aa after the operations are applied to it. Print the elements in the order of increasing of their indexes in the array aa . Separate the printed numbers by spaces.

输入输出样例

  • 输入#1

    3 1
    1 2 3
    

    输出#1

    1 3 6
    
  • 输入#2

    5 0
    3 14 15 92 6
    

    输出#2

    3 14 15 92 6
    
首页