Recent Posts
Notice
No Rules Rules
최댓값 (feat. 백준, 2566번) 본문
728x90
반응형
최댓값
https://www.acmicpc.net/problem/2566
// 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
반응형
'생활 > 코테' 카테고리의 다른 글
막대기 (feat. 백준, 1094번) (0) | 2022.10.25 |
---|---|
케빈 베이컨의 6단계 법칙 (feat. 백준, 1389번) (0) | 2022.10.24 |
주몽 (feat. 백준, 1940번) (0) | 2022.10.21 |
그릇 (feat. 백준, 7567번) (0) | 2022.10.21 |
단어 뒤집기 (feat. 백준, 9093번) (0) | 2022.10.21 |
Comments