题解列表

筛选

后缀子串排序——python

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

求最大值——python

摘要:解题思路:注意事项:参考代码:while True:    try:        L = list(map(int,input().split()))        print(f"max={max……

排队打水问题

摘要:解题思路:注意事项:参考代码: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 ……