具有abcd=(ab+cd)2性质的四位数简单循环代码和(简单粗暴)的方法 摘要:解题思路:分别求出abcd的值后判断 直接输出 注意事项:参考代码:(1)#include<stdio.h>#include<math.h>int …… 题解列表 2023年01月10日 0 点赞 0 评论 268 浏览 评分:9.9
二级C语言-最小绝对值(水题) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ int i,a[100],min,t,index; for(i=…… 题解列表 2023年01月10日 0 点赞 0 评论 227 浏览 评分:8.0
C++ 贪心+双指针 O(N)复杂度 摘要:``````````cpp #include using namespace std; #define ll long long //纪念品分组 namespace test29 {…… 题解列表 2023年01月10日 0 点赞 0 评论 343 浏览 评分:9.9
蓝桥杯算法训练VIP-比较字符串-python 摘要:解题思路:注意题目所给信息,任一字符串都不是彼此的前缀,意思是如果能够遍历完字符串那么必定相等,如果不能,必定存在某个不相同的字符串,不可能出现遍历完其中一个字符串,但仍然找不到不同字符的情况,即短的…… 题解列表 2023年01月10日 0 点赞 0 评论 233 浏览 评分:0.0
【Python题解】蓝桥杯算法提高VIP-幸运顾客 摘要:参考代码:N = int(input()) lis = [] # 保存幸运号 count = 0 # 记抽号天数 result = [] # 保存输出结果 题解列表 2023年01月10日 1 点赞 0 评论 214 浏览 评分:9.9
二级C语言-阶乘数列(水题) 摘要:解题思路:注意事项:unsigned long long 放不下,用double放参考代码:#include <stdio.h>double f(int n){ if(n==1) return …… 题解列表 2023年01月10日 0 点赞 0 评论 301 浏览 评分:9.9
二级C语言-统计字符(水题) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char s[100]; int i,a=0,b=0,c=0,d=0; gets(s); for(i=0;s[…… 题解列表 2023年01月10日 0 点赞 0 评论 274 浏览 评分:9.9
【Python题解】蓝桥杯算法提高VIP-删除重复元素 摘要:解题思路:利用列表的copy()和remove()方法。参考代码:s = list(input()) for i in s: temp = s.copy() temp.remov…… 题解列表 2023年01月10日 0 点赞 0 评论 216 浏览 评分:9.9
2847: 找第一个只出现一次的字符 摘要:```cpp #include #include using namespace std; int main() { char ch[1000000],letter[26],let…… 题解列表 2023年01月10日 0 点赞 0 评论 450 浏览 评分:9.9
2177: 信息学奥赛一本通T1252-走迷宫 摘要:```cpp #include #include using namespace std; const int S=41; struct node { int x,y,l; }…… 题解列表 2023年01月10日 0 点赞 0 评论 226 浏览 评分:9.9