题解 2042: 杨辉三角 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N = 1e3+5;typedef long long ll;…… 题解列表 2024年05月26日 0 点赞 0 评论 169 浏览 评分:0.0
2881: 图像相似度 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e3;ll a[…… 题解列表 2024年05月26日 0 点赞 0 评论 160 浏览 评分:0.0
编写题解 2881: 图像相似(易懂) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e3;ll a[…… 题解列表 2024年05月26日 0 点赞 0 评论 158 浏览 评分:0.0
题解 2881: 图像相似度 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;const int N = 1e3;typedef long long ll;ll…… 题解列表 2024年05月26日 0 点赞 0 评论 172 浏览 评分:0.0
2876: 矩阵交换行 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e3;ll a[…… 题解列表 2024年05月26日 0 点赞 0 评论 274 浏览 评分:0.0
题解 2876: 矩阵交换行 摘要:#include <bits/stdc++.h>using namespace std;const int N = 1e1;typedef long long ll;ll a[N][N];int ma…… 题解列表 2024年05月26日 0 点赞 0 评论 182 浏览 评分:0.0
简单易懂,看懂给个好评! 摘要:解题思路:注意事项:参考代码:h = 0q = 0hours = []n = int(input())for i in range(n): q += 1 a, b = map(int, i…… 题解列表 2024年05月26日 2 点赞 0 评论 297 浏览 评分:9.9
1072汽水瓶(递归算法实现) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int digui(int n,int* sum){ if(n<=1) return (*sum); else if(n==2) ret…… 题解列表 2024年05月26日 0 点赞 0 评论 170 浏览 评分:0.0
1039-宏定义闰年判断c++ 摘要:原题链接:[https://www.dotcpp.com/oj/problem1039.html](https://www.dotcpp.com/oj/problem1039.html) 参考代…… 题解列表 2024年05月26日 0 点赞 0 评论 502 浏览 评分:10.0
无聊的星期六 摘要:n=[[0]*3]*3 for i in range(3): n[i]=list(map(int,input().split())) for i in range(3): pr…… 题解列表 2024年05月25日 0 点赞 0 评论 364 浏览 评分:0.0