☕Language: Java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.math.BigInteger;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
int[][] intArr = new int[9][9];
int intMax = intArr[0][0];
int iMax=0;
int jMax=0;
for(int i=0; i<9; i++) {
StringTokenizer st = new StringTokenizer(br.readLine(), " ");
for(int j=0; j<9; j++) {
intArr[i][j] = Integer.parseInt(st.nextToken());
if(intArr[i][j] >= intMax) {
intMax = intArr[i][j];
iMax = i+1;
jMax = j+1;
}
}
}
bw.write(intMax + " " + iMax + " " + jMax);
bw.flush();
}
}
|
소스 코드
🔗 HJ0216/TIL/BOJ
'Computer > Algorithm_Java' 카테고리의 다른 글
[BaekJoon] 13241번 최소공배수 문제풀이 (Success) (0) | 2023.06.14 |
---|---|
[BaekJoon] 10798번 세로읽기 문제풀이 (Success) (0) | 2023.06.11 |
[BaekJoon] 24267번 알고리즘 수업 - 알고리즘의 수행 시간 6 문제풀이 (Success) (0) | 2023.06.08 |
[BaekJoon] 24266번 알고리즘 수업 - 알고리즘의 수행 시간 5 문제풀이 (Success) (0) | 2023.06.07 |
[BaekJoon] 24265번 알고리즘 수업 - 알고리즘의 수행 시간 4 문제풀이 (Success) (0) | 2023.06.06 |