蓝桥杯2014年第五届真题-兰顿蚂蚁py暴力求解 摘要:参考代码:m,n = map(int,input().split())li = []for i in range(m): li.append(list(map(int,input().s…… 题解列表 2022年03月09日 0 点赞 0 评论 397 浏览 评分:0.0
小九九,简单粗暴 摘要:解题思路:因为他要求是写出”小九九“所以简单粗暴注意事项:不要忘加”<<endl;“参考代码:#include<bits/stdc++.h> using namespace std; int ma…… 题解列表 2022年03月09日 0 点赞 0 评论 444 浏览 评分:6.7
2026: 糖块粘合 摘要:解题思路:注意事项:注意糖块融合后形成的糖块和后面一个糖块可以融合参考代码:#include<bits/stdc++.h> using namespace std; int f(int x[][3…… 题解列表 2022年03月09日 0 点赞 0 评论 384 浏览 评分:0.0
质因数分解 摘要:解题思路:先求出一个质数,再用输入那个数去除以求出来的质数,就得到了另一个质数,再用两个数进行比较,保留大的数注意事项:参考代码:#include<iostream> #include<cmath>…… 题解列表 2022年03月09日 0 点赞 1 评论 812 浏览 评分:9.9
1688题解python 摘要:解题思路:a,b和c的类型不同,但必须在同一行输入,所以先把A,B,C输入为同一类型,在第二行再把C改成整数型注意事项:参考代码:a,b,c=list(map(str,input().split())…… 题解列表 2022年03月09日 0 点赞 0 评论 481 浏览 评分:9.9
写题解 1126: C语言训练-字符串正反连接 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int m,i; char str[51]; gets(str); m=st…… 题解列表 2022年03月09日 0 点赞 0 评论 482 浏览 评分:0.0
编写题解 1143: C语言训练-素数问题 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<stdio.h>using namespace std;int main(){ int m; bool …… 题解列表 2022年03月09日 0 点赞 0 评论 420 浏览 评分:0.0
字符串对比题解 摘要:解题思路:注意事项:参考代码:a=input()b=input()if a==b: print(2)else: if len(a)==len(b): if a.lower()…… 题解列表 2022年03月09日 0 点赞 0 评论 435 浏览 评分:0.0
编写题解 1123: C语言训练-列出最简真分数序列* 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ printf("1/40,3/40,7/40,9/40,11/40,13/40,17/40,19/40,21/4…… 题解列表 2022年03月09日 0 点赞 0 评论 453 浏览 评分:0.0
优质题解 1975: 蓝桥杯算法提高VIP-扑克排序 摘要:解题思路: 将J、Q、C、A分别替换成abcd以便排序,将dchs分别替换成1234以便于排序,然后用StringBuilder的对象sb存储替换后的字符串,将…… 题解列表 2022年03月09日 0 点赞 1 评论 748 浏览 评分:6.0