1107: 数组输出

Memory Limit:512 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:28 Solved:6

Description


  输入一个3行4列的数组,找出该数组中绝对值最大的元素、输出该元素及其两个下标值。如有多个输出行号最小的,还有多个的话输出列号最小的。

Input

输入描述:
一个3行4列的数组

Output


输出描述:
三个数,最小值以及下标

Sample Input Copy

1 2 3 5
-2 5 8 9
6 -7 5 3

Sample Output Copy

9 2 4

HINT

HINT:时间限制:1.0s 内存限制:512.0MB

Source/Category