1908: 矩阵中的最大值
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:47
Solved:31
Description
有一个3x4的矩阵,要求编程序求出其中值最大的那个元素的值,以及其所在的行号和列号。数据均为非负整数。
Input
分3行4列输入。
Output
分两行输出。
Sample Input Copy
1 2 3 4
5 6 7 8
9 10 11 12
Sample Output Copy
12
3 4