问题 AA: Matrix Power Series

内存限制:128 MB 时间限制:1.000 S
评测方式:文本比较 命题人:
提交:2 解决:2

题目描述

Given a n × n matrix A and a positive integer k, find the sum S=A+A2+A3++Ak.

输入

The input contains exactly one test case. The first line of input contains three positive integers n (n≤30) ,k (k≤109) and m (m<104). Then follow n lines each containing n nonnegative integers below 32,768, giving A’s elements in row-major order.

输出

Output the elements of S modulo m in the same way as A is given.

样例输入 复制

2 2 4
0 1
1 1

样例输出 复制

1 2
2 3

来源/分类