8 条题解

  • 0
    @ 2024-9-7 12:32:02
    b=input().split()
    s=[0]*10000
    for i in a:
        s[int(i)]=1
    for i in b:
        s[int(i)]=1
    for i in range(0,10000):
        if s[i]==1:
            print(i,end=' ')
    

    最正经无科技的桶计数,多多关注喵

    信息

    ID
    87
    时间
    1000ms
    内存
    128MiB
    难度
    6
    标签
    递交数
    1180
    已通过
    320
    上传者