蓝桥杯算法训练VIP-字符串编辑-题解(Python代码) 摘要:```python def oper(list1 , str1 ,element): temp = str(element[0]) if temp in list1 : …… 题解列表 2020年02月21日 0 点赞 0 评论 839 浏览 评分:0.0
蓝桥杯2013年第四届真题-核桃的数量 (Python代码)类似于求三个数的最小公倍数 摘要:```python a,b,c=map(int,input().split()) for i in range(1,a*b*c+1): if i%a==0 and i%b==0 and …… 题解列表 2020年02月21日 0 点赞 2 评论 1381 浏览 评分:9.9
C语言训练-素数问题-题解(Python代码) 摘要:```python while True: num = int(input()) for i in range(2,num):#判断在num之前的数能不能把num整除 …… 题解列表 2020年02月20日 0 点赞 1 评论 598 浏览 评分:9.9
蓝桥杯算法提高VIP-实数相加-题解(Python代码) 大概五行代码解决问题 摘要:```python from decimal import * getcontext().prec = 1000 a=Decimal(input().strip()) b=Decimal(in…… 题解列表 2020年02月20日 0 点赞 0 评论 633 浏览 评分:9.9
蓝桥杯算法提高VIP-文本加密 -题解(Python代码)python开荒柘 摘要:水题 ```python lib="zyxwvutsrqponmlkjihgfedcbaZYXWVUTSRQPONMLKJIHGFEDCBA" s=list(input()) for i in…… 题解列表 2020年02月20日 0 点赞 0 评论 498 浏览 评分:6.0
蓝桥杯2017年第八届真题-小数第n位 -题解(Python代码)python开荒柘 摘要:这道题对于python选手不太友好,python非常容易超时,但是只要分组进行,可以将时耗降到最小 ```python size=[int(i) for i in input().split()]…… 题解列表 2020年02月20日 0 点赞 0 评论 867 浏览 评分:7.3
蓝桥杯2014年第五届真题-拼接平方数-题解(Python代码)python开荒柘,简单题 摘要:废话不多说,上代码 ```python cate=[int(i) for i in input().split()] minn=cate[0] maxn=cate[1] limit_min=…… 题解列表 2020年02月20日 0 点赞 0 评论 977 浏览 评分:6.0
C语言训练-舍罕王的失算-题解(Python代码) 摘要: #s=2^0+2^1+2^2+''''''+2^63(不是题目上的答案,但是提交正确) s=0 for i in range(64): t=2…… 题解列表 2020年02月19日 0 点赞 3 评论 834 浏览 评分:0.0
C语言训练-立方和不等式-题解(Python代码) 摘要: n=int(input()) s=0 for i in range(1,1000): s+=i**3 if(s>n): …… 题解列表 2020年02月19日 0 点赞 0 评论 817 浏览 评分:2.0
蓝桥杯算法提高VIP-分数统计-题解(Python代码) 摘要:```python n=int(input()) a=[int(i) for i in input().split()] b=[[],[],[],[],[]] for i in a: …… 题解列表 2020年02月19日 0 点赞 0 评论 616 浏览 评分:0.0