IP判断-题解(Python代码) 代码短,考虑'001'这种模式的做法 摘要:废话不多说,先贴代码 ```python while True: s=input() if s=="End of file": break L=s.…… 题解列表 2019年12月31日 0 点赞 0 评论 1146 浏览 评分:7.3
蛇行矩阵-题解(Python代码) 摘要:```python N=int(input()) if N==1: print('1') else: L=[[0]*N for i in range(N)] L[0][0]='1' …… 题解列表 2019年12月30日 0 点赞 1 评论 2187 浏览 评分:9.2
2^k进制数-题解(Python代码),规划打表 摘要:废话不多说,先上代码 ```python s=input() k=int(s.split()[0]) w=int(s.split()[1]) p=w%k q=int((w-p)/k+1) …… 题解列表 2019年12月30日 0 点赞 0 评论 1264 浏览 评分:8.0
蓝桥杯历届试题-回文数字-题解(Python代码) 容易理解 摘要:根据 作者: 浅滩 发表时间:2019-02-12 17:31:56 的C语言版代码改写Python版本,感谢大神! 原版出处链接:[[历届试题]回文数字 (时间复杂度比优质题解的…… 题解列表 2019年12月29日 0 点赞 1 评论 2053 浏览 评分:9.9
蓝桥杯历届试题-回文数字-题解(Python代码)——暴力 摘要:# 暴力方法解决特殊回文数字数 时间超时 并未做对 求大神优化! ```python def func(n): listNum = [] for i in range(100…… 题解列表 2019年12月29日 0 点赞 0 评论 1146 浏览 评分:6.7
蓝桥杯历届试题-数字游戏-题解(Python代码) 摘要:  ```python n,k,T=map(int,input().split()) …… 题解列表 2019年12月28日 0 点赞 2 评论 1554 浏览 评分:9.9
Tom数-题解(Python代码) 摘要:```python def calc(): while True: n = input() try: digitlist = …… 题解列表 2019年12月27日 0 点赞 0 评论 1348 浏览 评分:0.0
【出圈】-题解(Python代码)公式法! 摘要:**代码如下:** while True: a,b=map(int,input().split()) x=0 for i in ra…… 题解列表 2019年12月25日 0 点赞 3 评论 1151 浏览 评分:7.3
【偶数求和】-题解(Python代码) 摘要:**代码如下:** while True: n,m=map(int,input().split()) a=2 s=0;t=[];j=…… 题解列表 2019年12月25日 0 点赞 0 评论 1693 浏览 评分:9.9
C语言训练-自守数问题-题解(Python代码)没有python的题解,那就我来吧! 摘要:**代码如下:** x="" n=0 u="" for i in range(200001): n=i**2 x=str…… 题解列表 2019年12月23日 0 点赞 0 评论 1739 浏览 评分:9.9