Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- string
- simulation
- Binary Search
- array
- dynamic programming
- Tree
- java
- Number Theory
- Matrix
- Binary Tree
- Method
- Math
- Counting
- greedy
- sorting
- 코딩테스트
- hash table
- database
- 구현
- geometry
- 자바
- SQL
- two pointers
- Data Structure
- 코테
- Class
- bit manipulation
- Stack
- 파이썬
- implement
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 2566. 최댓값 본문
- 입력: 첫째 줄부터 아홉 번째 줄까지 한 줄에 아홉 개씩 수가 주어진다. 주어지는 수는 100보다 작은 자연수 또는 0이다.
- 출력: 첫째 줄에 최댓값을 출력하고, 둘째 줄에 최댓값이 위치한 행 번호와 열 번호를 빈칸을 사이에 두고 차례로 출력한다. 최댓값이 두 개 이상인 경우 그 중 한 곳의 위치를 출력한다.
import java.io.*;
class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int r = 0, c = 0, max = 0;
for(int i=0 ; i<9 ; i++){
String[] input = br.readLine().split(" ");
for(int j=0 ; j<9 ; j++){
int x = Integer.valueOf(input[j]);
if(max < x){
r = i; c = j; max = x;
}
}
}
System.out.println(max + "\n" + (r+1) + " " + (c+1));
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 766. Toeplitz Matrix (0) | 2023.03.29 |
---|---|
[LeetCode/Easy] 2600. K Items With the Maximum Sum (0) | 2023.03.28 |
[백준 온라인 저지] 2738. 행렬 덧셈 (0) | 2023.03.21 |
[백준 온라인 저지] 10812. 바구니 순서 바꾸기 (0) | 2023.03.21 |
[LeetCode/Easy] 2595. Number of Even and Odd Bits (0) | 2023.03.19 |