[백준] 17140번 이차원 배열과 연산- 파이썬
·
알고리즘 공부/구현
https://www.acmicpc.net/problem/17140 17140번: 이차원 배열과 연산 첫째 줄에 r, c, k가 주어진다. (1 ≤ r, c, k ≤ 100) 둘째 줄부터 3개의 줄에 배열 A에 들어있는 수가 주어진다. 배열 A에 들어있는 수는 100보다 작거나 같은 자연수이다. www.acmicpc.net import sys import copy r, c, k= map(int,sys.stdin.readline().split()) num_list = [] r -=1 c -= 1 for i in range(3): num_list.append(list(map(int,input().split()))) def r_cal(num_list): tmp = [] max_len = 0 for i in r..