题解列表

筛选

P1048 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<climits> #include<algorithm> #includ……

P1052 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; const int maxn=6e3+10; int n; int dp……

P1038 (C++代码)

摘要:解题思路:注意事项:参考代码:#include <cstdio> #include <cmath> #include <iostream> using namespace std; int n……

P1067 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int num[1010];//每个人的身高  i……

P1078 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<cmath> using namespace std;     int ……

蓝桥杯算法提高VIP-五次方数 (Java代码)

摘要:解题思路:算过9的5次方为59049,计算6位数全是9,加起来不超过360000,所以,只用判断1000000之前就行注意事项:0和1不能考虑进去,这是个坑!参考代码:public class 五次方……