题解列表
编写题解 2825: 计算多项式的值,python超简单
摘要:x,n = input().split()x = float(x)n = int(n)#&a……
编写题解 2833: 金币,python超简单
摘要:def calculate_coins(days):    coins =&nbsp……
python代码解决问题
摘要:解题思路:注意事项:参考代码:x1,y1,x2,y2,x3,y3,x4,y4=map(int,input().split())s1=(x2-x1)*(y2-y1)+(x4-x3)*(y4-y3)x_l……
利用重载进行多个数字相加
摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;intadd(inta,intb){&nbsp;&nbsp;retur……
选数异或(线段树思路详解)
摘要:解题思路:思路详解在:https://www.acwing.com/solution/content/228403/参考代码:const&nbsp;int&nbsp;N&nbs……
判断元音字母出现的位置
摘要:#include#include#include/*runthisprogramusingtheconsolepauseroraddyourowngetch,system("pause&qu……
1866: 三位数反转 (公式简化计算结果)(学习 @弥城猫巷 本题代码中的补零)
摘要:思路:三位数abc:a×100+b×10+c×1三位数反转cba:c×100+b×10+a×1abc-cba=99×……