题解 | 多组_二维数组_T组形式
多组_二维数组_T组形式
https://www.nowcoder.com/practice/fe1e902e076b46dd82e7d42e12617893
t =int(input())
for _ in range(t):
n,m = map(int,input().split())
result = 0
for _ in range(n):
row = list(map(int,input().split()))
result += sum(row)
print(result)
这个拼一下前面俩个就行

查看5道真题和解析