// 2024 IUSB Programming Competition // Round 1 Problem 5 // Sky Scan // Solution by Liguo Yu import java.util.Scanner; public class round1_p5 { public static void main(String[] args) { Scanner input = new Scanner(System.in); int m = input.nextInt(); // m row int n = input.nextInt(); // n columns int r = input.nextInt(); // r double full rounds int size_full_scan = m*n*2; int size_1d = size_full_scan * r; double[] data = new double[size_1d]; for(int i=0; i strongest) strongest = array[i][j]; } } for (int i = 0; i