No Rules Rules

최댓값 (feat. 백준, 2566번) 본문

생활/코테

최댓값 (feat. 백준, 2566번)

개발하는 완두콩 2022. 10. 24. 12:09
728x90
반응형

최댓값
https://www.acmicpc.net/problem/2566

 

2566번: 최댓값

첫째 줄에 최댓값을 출력하고, 둘째 줄에 최댓값이 위치한 행 번호와 열 번호를 빈칸을 사이에 두고 차례로 출력한다. 최댓값이 두 개 이상인 경우 그 중 한 곳의 위치를 출력한다.

www.acmicpc.net

 

// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main(){
    ios::sync_with_stdio(false), cin.tie(NULL);
    register int arr[9][9], v = -1, r, c;
    for(register int i = 0, j; i < 9; ++i)
        for(j = 0; j < 9; ++j){
            cin >> arr[i][j];
            if(arr[i][j] > v)
                v = arr[i][j], r = i, c = j;
        }
    cout << v << "\n" << r + 1 << " " << c + 1;
    return 0;
}
// *&)*@*

 

반응형

9X9의 행렬 중 가장 큰 값과 해당 값의 행,열 의 위치를 구하는 문제입니다.

728x90
반응형
Comments