18 条题解

  • 1
    @ 2021-12-8 20:36:00

    补一个Python代码

    a=int(input())
    b=False
    if a%3==0:
        print(3,end=" ")
        b=True;
    if a%5==0:
        print(5,end=" ")
        b=True;
    if a%7==0:
        print(7,end=" ")
        b=True;
    if not b:
        print("n")
    

信息

ID
864
时间
1000ms
内存
128MiB
难度
6
标签
递交数
1118
已通过
342
上传者