题解列表

筛选

直接解方程组

摘要:解题思路:注意事项:参考代码:x, a, y, b = map(int, input().split())m = b*y - a*xn = b- ares= m / nprint('%.2f&……

python选择排序

摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))a.sort()for i in a:    print(i)……

汽水瓶(python代码)

摘要:解题思路:注意事项:参考代码while True:    n=int(input())    if n==0:        break    c=0    while n>=3:        c=……

题解 2810: 鸡尾酒疗法

摘要:参考代码:a=int(input())b=[]for i in range(1,a+1):    x,y=map(int,input().split())    if i<=1:        c=y……

题解 1332: 津津的储蓄计划

摘要:解题思路:注意事项:参考代码:list1 = []  # 每月预算 for i in range(12):     list1.extend(map(int, input().split()))……

2820: 含k个3的数

摘要:参考代码:m, k = map(str, input().split()) if int(m) % 19 == 0 and &#39;&#39;.join(m).count(k) == 3:   ……