题解列表

筛选

1074数字整除(数学除法)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char arr[200]; while(scanf("%s",arr)!=EOF) { if(arr[0]=……

题解 2042: 杨辉三角

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N =1e3;ll a……

2881 图像相似度

摘要:解题思路:#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e3;long long a[N]……

题解 2042: 杨辉三角

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N = 1e3+5;typedef long long ll;……

2881: 图像相似度

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e3;ll a[……

题解 2881: 图像相似度

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N = 1e3;typedef long long ll;ll……

2876: 矩阵交换行

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e3;ll a[……

题解 2876: 矩阵交换行

摘要:#include <bits/stdc++.h>using namespace std;const int N = 1e1;typedef long long ll;ll a[N][N];int ma……