2878: 计算矩阵边缘元素之和 摘要:解题思路:注意事项:参考代码:m, n = map(int, input().split()) arr = [] for _ in range(m): arr.append(list(m…… 题解列表 2024年03月29日 0 点赞 1 评论 124 浏览 评分:0.0
独立完成啦兄弟们 摘要:解题思路:除了b1[1:m-1]问文心一言外其他自己写的注意事项:参考代码:m,n=map(int,input().split())b1=[]for i in range(m): l1=list…… 题解列表 2024年07月31日 1 点赞 0 评论 101 浏览 评分:0.0
鬼知道我写了多少遍 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e3;ll a…… 题解列表 2024年05月04日 0 点赞 0 评论 72 浏览 评分:0.0
2878: 计算矩阵边缘元素之和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=2e3;ll a…… 题解列表 2024年10月20日 0 点赞 0 评论 244 浏览 评分:0.0
2878: 计算矩阵边缘元素之和 摘要:``` #include using namespace std; const int N=110; int a[N][N],b[N][N]; int main(){ int n,m,s…… 题解列表 2023年12月18日 0 点赞 0 评论 108 浏览 评分:0.0
计算矩阵边缘元素之和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[500][500]; int i,j,m,n; int sum=0; scanf("%d %d",&…… 题解列表 2022年11月27日 0 点赞 0 评论 107 浏览 评分:0.0
题解 2878: 计算矩阵边缘元素之和 摘要: #include using namespace std; const int N=110; int a[N][N],sum; int main() {…… 题解列表 2023年12月18日 0 点赞 0 评论 120 浏览 评分:0.0