同行列对角线的格子 摘要:解题思路:注意事项:参考代码:N,x,y = map(int,input().split())for i in range(1,N+1): print('('…… 题解列表 2026年02月09日 0 点赞 0 评论 221 浏览 评分:0.0
字符串最大跨距 解题思路:注意事项:参考代码:s,s1,s2=input().split(',')s1index=s.find(s1)s2index=s.rfind(s2)ifs1index!=-1ands2index!=-1ands2index-s1index>=len(s1):print(s2in 题解列表 2026年02月08日 0 点赞 0 评论 224 浏览 评分:0.0
2865: 紧急措施 摘要:解题思路:注意事项:参考代码:email = input().strip()n = int(input())empty = Truefor i in range(n): ac…… 题解列表 2026年02月08日 0 点赞 0 评论 201 浏览 评分:0.0
棋盘问题3037:python 摘要:解题思路:注意事项:参考代码:n,k=map(int,input().split())b=[]while n!=-1 and k!=-1: a=[]  …… 题解列表 2026年02月06日 0 点赞 0 评论 216 浏览 评分:0.0
一点点思路 摘要:解题思路:注意事项:参考代码:n=int(input())a=[]for i in range(1,n+1): a.append(i)cnt=0while len(a)>…… 题解列表 2026年02月05日 0 点赞 0 评论 282 浏览 评分:0.0
用列表和for遍历 摘要:解题思路:注意事项:参考代码:def move(): a=int(input()) b=list(map(int,input().split()))…… 题解列表 2026年02月01日 0 点赞 0 评论 301 浏览 评分:0.0
最简便 不容置疑 解题思路:注意事项:参考代码:a=map(int,input().strip().split())print(max(a)) 题解列表 2025年12月12日 2 点赞 0 评论 467 浏览 评分:8.0
Py2901-查找特定的值 摘要:n=int(input())m=list(map(int,input().split()))l=int(in…… 题解列表 2025年12月10日 0 点赞 0 评论 299 浏览 评分:0.0
30阶乘数列最优解 摘要:解题思路:注意事项:参考代码:a = 0b = 1for i in range(1, 31): b *= i a += bprint(f"…… 题解列表 2025年12月10日 1 点赞 0 评论 406 浏览 评分:10.0
孩子们,这是题解,What can i say! 摘要:解题思路:注意事项:参考代码:while True: try: n=int(input()) …… 题解列表 2025年12月05日 0 点赞 0 评论 354 浏览 评分:10.0