https://www.acmicpc.net/problem/2566
import java.util.Scanner;
public class Main {
public static void main(String args[]){
Scanner sc = new Scanner(System.in);
int [][] arr = new int[9][9];
int max = 0 ;
int x = 0 ,y = 0;
for (int i = 0 ; i <9 ; i++){
for(int j = 0 ; j < 9; j++){
arr[i][j] = sc.nextInt();
if (arr[i][j] > max){
max = arr[i][j];
x = i;
y = j;
}
}
}
System.out.println(max);
System.out.println( (x+1)+ " " + (y+1));
}
}
'프로그래밍언어 > 알고리즘' 카테고리의 다른 글
백준 2563 색종이_JAVA (0) | 2023.10.11 |
---|---|
백준 10798 세로읽기_JAVA (2) | 2023.10.08 |
백준 2738 행렬 덧셈_JAVA (0) | 2023.09.19 |
백준 1157 단어 공부_JAVA (0) | 2023.07.14 |
백준 10988 팰린드롬인지 확인하기_JAVA (0) | 2023.06.15 |