transposed matrix


Submit solution

Points: 10 (partial)
Time limit: 1.0s
Memory limit: 256M

Authors:
Problem type

題目說明

輸入6個整數,請放入並輸出3x2矩陣,再將矩陣轉置並且輸出轉置後的矩陣

輸入

6個整數

輸出

3x2矩陣 2x3矩陣

sample input1

1 2 3 4 5 6

sample output1

1 2
3 4
5 6
1 3 5
2 4 6

Comments

There are no comments at the moment.