2877: 同行列对角线的格子 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1000;ll a…… 题解列表 2024年06月09日 0 点赞 0 评论 94 浏览 评分:10.0
2877:我这个方法更简单 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n,x,y; scanf("%d%d%d",&n,&x,&y); int i,j;…… 题解列表 2024年12月26日 3 点赞 0 评论 102 浏览 评分:10.0
对角线的处理找下规律,不难 摘要:解题思路:根据行号列号能找到对角线输出的起始点注意事项:对角线的输出先确定范围参考代码:#include<iostream> #include<stdio.h> using namespace s…… 题解列表 2023年12月31日 0 点赞 0 评论 92 浏览 评分:9.9
2877: 同行列对角线的格子(有点麻烦,但非常好使) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std ; int a[100][100] ; int b[100][100] ;…… 题解列表 2023年07月18日 0 点赞 0 评论 440 浏览 评分:9.9
同行列对角线的格子(C语言代码) 摘要:```c #include /*------------------------------*/ void S_line(int n, int x, int y)//从左到右输出同一行格子位置 …… 题解列表 2022年11月01日 0 点赞 0 评论 671 浏览 评分:9.9
2877: 同行列对角线的格子 摘要:参考代码:#include<bits/stdc++.h>using namespace std;long long int a[1300][1300];int main(){ int n; …… 题解列表 2023年07月21日 0 点赞 0 评论 127 浏览 评分:9.9
题解 2877: 同行列对角线的格子 摘要: #include using namespace std; const int N=1100; int a[N],b[N],x[N],y[N],n,i,j; …… 题解列表 2023年12月24日 0 点赞 0 评论 99 浏览 评分:9.9
此题仅供参考,(也可以抄) 摘要:解题思路:无注意事项:无,就是有点nan.参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int…… 题解列表 2024年06月09日 0 点赞 0 评论 64 浏览 评分:9.9
题解 2877: 同行列对角线的格子 摘要:```cpp #include using namespace std; typedef long long ll; const int N=1e3; ll a[N][N]; int m…… 题解列表 2024年06月09日 0 点赞 0 评论 84 浏览 评分:9.9
2877: 同行列对角线的格子 Python实现,带注释 摘要:解题思路:之前一直想推出 对角线的坐标,后面发现方向错了,看了其他大佬的发现需要用规律来做主对角线的规律是,两个坐标作差相等;副对角线的规律是,两个坐标的和相等;注意事项:0参考代码:N, i, j …… 题解列表 2023年12月05日 0 点赞 1 评论 283 浏览 评分:9.9