Py2901-查找特定的值 摘要:n=int(input())m=list(map(int,input().split()))l=int(in…… 题解列表 2025年12月10日 0 点赞 0 评论 283 浏览 评分:0.0
30阶乘数列最优解 摘要:解题思路:注意事项:参考代码:a = 0b = 1for i in range(1, 31): b *= i a += bprint(f"…… 题解列表 2025年12月10日 1 点赞 0 评论 393 浏览 评分:10.0
孩子们,这是题解,What can i say! 摘要:解题思路:注意事项:参考代码:while True: try: n=int(input()) …… 题解列表 2025年12月05日 0 点赞 0 评论 341 浏览 评分:10.0
Py2872-字符环-步骤清晰 摘要:s1,s2=input().strip().split()len1,len2=len(s1),len(s2)…… 题解列表 2025年12月03日 0 点赞 0 评论 276 浏览 评分:0.0
Py1273-ISBN码-步骤清晰 摘要:yy,cbs,bh,ISBN=input().split('-')num=list(map(int,yy+cbs+bh))j&n…… 题解列表 2025年12月03日 0 点赞 0 评论 269 浏览 评分:0.0
Py2865-紧急措施-步骤清晰 摘要:my_email=input().strip()n=int(input())arr=list(input().split…… 题解列表 2025年12月02日 0 点赞 0 评论 247 浏览 评分:0.0
Py2862-字符串移位包含问题 摘要:解题思路:注意事项:输入有两行参考代码:str=list(map(str,input().split()))iflen(str)==2:…… 题解列表 2025年12月01日 0 点赞 0 评论 283 浏览 评分:0.0
Py1257-超级楼梯 摘要:n=int(input())num=[int(input())for_inrange(n)]ma…… 题解列表 2025年11月30日 0 点赞 0 评论 225 浏览 评分:0.0
Py2860-字符串判等 摘要:str1=input().strip().lower().replace('','')str2=inpu…… 题解列表 2025年11月27日 0 点赞 0 评论 252 浏览 评分:0.0
最简单Sn求和 摘要:参考代码:n=int(input())b=0a=0for _ in range(n): a=a*10+2 b+=aprint(b)…… 题解列表 2025年11月19日 6 点赞 0 评论 627 浏览 评分:9.0