题解列表

筛选

排队打水问题

摘要:解题思路:注意事项:参考代码:n,r = map(int,input().split())L = list(map(int,input().split()))L.sort()s = sum([i fo……

模拟一下就好了

摘要:解题思路:注意事项:参考代码:m=input()n=int(input())s=list(m)for _ in range(n):    cnt=1    t=''    for i ……

2685: 蓝桥杯2022年第十三届省赛真题-蜂巢

摘要:解题思路:建立新的坐标系,转换坐标,判断距离图中坐标只是表示每个六边形的相对位置,不要理解成几何中心的平面坐标!注意事项:关键在于如何建一个坐标系使得方便判断距离参考代码:d1,p1,q1,d2,p2……

密码截获——python

摘要:解题思路:注意事项:参考代码:while True:    try:        L = input()        L2 = []        if len(L) == 1:         ……