无聊的星期六 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split()) print('%.2f' % (sum(i for i in range(1,a+1))+…… 题解列表 2024年04月20日 0 点赞 0 评论 436 浏览 评分:0.0
python--study||O.o 摘要:参考代码:import sys def make(x): res = bin(x) res = res[2:] while len(res) < 5: …… 题解列表 2024年04月20日 0 点赞 0 评论 449 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:number = int(input()) sim = 2 total = sum([sim + i * 3 for i in range(number)]) pr…… 题解列表 2024年04月20日 0 点赞 0 评论 729 浏览 评分:0.0
python--study||O.o 摘要:参考代码:n = int(input()) res = [[0] * n for _ in range(n)] num = 1 #将需要构造的矩形分为左上三角形和右下三角形两个部分 #所有待写…… 题解列表 2024年04月20日 0 点赞 0 评论 528 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:ci=0 for x in range(100,999): x=str(x) if int(x)==sum(((int(x[i])**3) for …… 题解列表 2024年04月20日 0 点赞 0 评论 800 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:x=input() if int(x)==sum(((int(x[i])**3) for i in range(3))): print(1) else: …… 题解列表 2024年04月20日 0 点赞 0 评论 515 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:st=list(map(int,input().split())) print(''.join(str('%-8d' % i) for …… 题解列表 2024年04月20日 1 点赞 0 评论 951 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:import sys for str in sys.stdin: str=list(map(int,str.split())) max=0 …… 题解列表 2024年04月20日 0 点赞 0 评论 498 浏览 评分:0.0
无聊的星期六 摘要:解题思路:正则就不用了。注意事项:参考代码:import sys for line in sys.stdin: if line=="End of file": exit(…… 题解列表 2024年04月20日 0 点赞 0 评论 439 浏览 评分:0.0
无聊的星期六 摘要:标签个红色的,匪夷所思。解题思路:自己列一个表就知道了1=02=13=14=25=26=37=3参考代码:s=1 while s!=0: s=int(input()) if s=…… 题解列表 2024年04月19日 0 点赞 0 评论 416 浏览 评分:0.0