蓝桥杯算法训练VIP-反置数-题解(C语言代码) 摘要: #include int main() { int weishu(int n); int converse(int n); int m,…… 题解列表 2019年11月23日 0 点赞 0 评论 1356 浏览 评分:9.9
蓝桥杯算法训练VIP-数对-题解(C语言代码)值得参考 摘要: #include int main() { int n,i,j,k; scanf("%d",&n); for(i=1;i…… 题解列表 2019年11月23日 1 点赞 0 评论 1140 浏览 评分:9.9
[搞比利]2034题-27.阴阳-题解并查集解决(C++代码) 摘要: #include using namespace std; int father[100004]; int fuck[100004];//这里面放的就是节点与当前根的的关系 …… 题解列表 2019年11月23日 0 点赞 0 评论 920 浏览 评分:9.9
17.链表删除练习-题解(C++代码) 摘要:let us change the world ```cpp #include #include #include using namespace std; //…… 题解列表 2019年11月23日 0 点赞 0 评论 783 浏览 评分:9.9
蓝桥杯算法训练VIP-数组查找及替换-题解(C语言代码) 摘要:Ac代码 #include int main() { int x[1000],i,j,k=0,n,m,t; scanf("%d%d",&n,&m); for(i=0;i…… 题解列表 2019年11月23日 0 点赞 0 评论 1130 浏览 评分:9.9
A+B for Input-Output Practice (IV)-题解(Python代码) python 摘要:```python while True: sum=0 #定义及初始化 list=input().split()#输入数据 if list[0]=='0':#判…… 题解列表 2019年11月23日 0 点赞 0 评论 1515 浏览 评分:9.9
A+B for Input-Output Practice (V)-题解(Python代码)python 摘要:```python n = int(input()) #输入组数 for i in range(n): #下面的跟1088题相同,双倍快乐!emmmmm sum=0 #定义及…… 题解列表 2019年11月23日 0 点赞 0 评论 1364 浏览 评分:9.9
蓝桥杯算法训练VIP-完数 (Python代码) 摘要:代码如下: x=int(input("")) s=0 for i in range(1,x//2+1): #减少一半的循环次数 if x%i==0: #是他的因子 s…… 题解列表 2019年11月23日 0 点赞 0 评论 776 浏览 评分:9.9
蓝桥杯基础练习VIP-时间转换-题解(Python代码)python 摘要:```python num = int(input())#输入及字符转为整型 m,s=divmod(num,60)#整数赋值给m,余数赋值给s h,m=divmod(m,60)#同理 prin…… 题解列表 2019年11月23日 0 点赞 1 评论 1400 浏览 评分:9.9
蓝桥杯算法训练VIP-斜率计算-题解(C语言代码) 摘要:`值得参考的代码 #include #include int main(){ int x1, x2, y1, y2; scan…… 题解列表 2019年11月23日 0 点赞 0 评论 902 浏览 评分:9.9