

Time Limit: 2 sec / Memory Limit: 1024 MB
配点 : 点
問題文
行 列の行列 が与えられます。
の上から 行目、左から 列目の要素は です。
ここで、 行 列の行列 を、上から 行目、左から 列目の要素が と一致するような行列として定めます。
すなわち、 は の転置行列です。
を出力してください。
制約
- 入力は全て整数である
入力
入力は以下の形式で標準入力から与えられる。
出力
を以下の形式で出力せよ。
入力例 1Copy
4 3 1 2 3 4 5 6 7 8 9 10 11 12
出力例 1Copy
1 4 7 10 2 5 8 11 3 6 9 12
たとえば なので、転置行列 の上から 行目、左から 列目の要素は になります。
入力例 2Copy
2 2 1000000000 1000000000 1000000000 1000000000
出力例 2Copy
1000000000 1000000000 1000000000 1000000000
Score : points
Problem Statement
You are given an -by- matrix .
The element at the -th row from the top and -th column from the left of is .
Let be a -by- matrix whose element at the -th row from the top and -th column from the left equals .
That is, is the transpose of .
Print .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print in the following format:
Sample Input 1Copy
4 3 1 2 3 4 5 6 7 8 9 10 11 12
Sample Output 1Copy
1 4 7 10 2 5 8 11 3 6 9 12
For example, we have , so the element at the -st row from the top and -nd column from the left of the transpose is .
Sample Input 2Copy
2 2 1000000000 1000000000 1000000000 1000000000
Sample Output 2Copy
1000000000 1000000000 1000000000 1000000000