luogu#P10502. Matrix Power Series
Matrix Power Series
题目描述
Givena matrix and apositive integer ,find the sum .
输入格式
The input contains exactly one test case. The first line of input contains three positive integers (), () and (). Then follow n lines each containing non negative integers below 32,768, giving ’s elements in row-major order.
输出格式
Output the elements of modulo in the same way as is given.
题目大意
【题目描述】
给定一个 矩阵 和一个正整数 ,找出和 。
【输入格式】
输入包含一个测试用例。输入的第一行包含三个正整数 ()、()和 ()。接下来的 行每行包含 个小于 32,768 的非负整数,按行主序给出 的元素。
【输出格式】
以与给定 相同的方式输出 的元素对 取模。
翻译来自于:ChatGPT
2 2 4
0 1
1 1
1 2
2 3