백준 2566 파이썬
2024. 2. 10. 08:17ㆍ코딩 도구/백준 (단계별)
반응형
백준 2566 : 최댓값
문제
https://www.acmicpc.net/problem/2566
답안 코드 :
table = [list(map(int, input().split())) for _ in range(9)]
max_num = 0
max_row, max_col = 0, 0
for row in range(9):
for col in range(9):
if max_num <= table[row][col]:
max_row = row + 1
max_col = col + 1
max_num = table[row][col]
print(max_num)
print(max_row, max_col)
백준 / 문제 / 단계별로 풀어보기 / 7단계 2차원 배열
반응형
'코딩 도구 > 백준 (단계별)' 카테고리의 다른 글
백준 2745 파이썬 , enumerate() (33) | 2024.02.12 |
---|---|
백준 10798 파이썬 (39) | 2024.02.11 |
백준 2738 파이썬 (39) | 2024.02.09 |
백준 25206 파이썬 (38) | 2024.02.08 |
백준 1316 파이썬 (47) | 2024.02.07 |