1 条题解

  • 0
    @ 2023-1-7 10:39:06
    M = int(input()) 
    N = int(input())
    
    numList = []
    for i in range(M,N+1):
        if i%7==0 and i%5!=0:
            numList.append(str(i)) 
            # 转换为文字再存储,因为只有列表内容全是文字类型才能使用 ",".join(numList)
    
    print(",".join(numList))
    
    
    • 1

    信息

    ID
    1554
    时间
    1000ms
    内存
    128MiB
    难度
    6
    标签
    递交数
    85
    已通过
    26
    上传者