题解列表

筛选

二分+贪心+前缀和

摘要:```pythonn,x = map(int,input().split())x = 2*xh = list(map(int,input().split()))s = [0]*nf……

菜鸟代码,仅供参考

摘要:解题思路:对于两个整数aa和bb,它们的最大公约数(GCD)和最小公倍数(LCM)满足以下关系:GCD(a,b)×LCM(a,b)=a×bGCD(a,b)×LCM(……

python,先打表,找规律

摘要:解题思路:注意事项:参考代码:L,R=map(int,input().split(" "))allnumb=R-L+1no_need=0if L==1 or L==2:……

数组输出(思路简单)

摘要:解题思路:注意事项:参考代码:# 读取三行输入,每行4个整数,组成3x4的二维列表li1 = list(map(int, input().split()))li2 = list(map(int, in……

条件判断写法

摘要:x=int(input())if x%3==0 : print(3,end=' ')if x%5==0 : print(5,end=……

sort练习---python

摘要:解题思路:注意事项:参考代码:n,m=map(int,input().split())l=list(map(int,input().split())) #要把列表中的数设为Int型,才能适应sort(……

这个代码简单些

摘要:解题思路:注意事项:可以输入输出多组数据,列题有误导,所以要加上跳出条件参考代码:while True: try: n=……

-计算一个整数N的阶乘

摘要:解题思路:注意事项:参考代码:n=int(input())sum=1for i in range(1,n+1): sum=sum*iprint(sum) &nbs……