风吹飞叶


私信TA

用户名:dotcpp0778580

访问量:298

签 名:

等  级
排  名 2247
经  验 2397
参赛次数 0
文章发表 14
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

核心:就挺难说的,暴力求解吧
代码:

def func(l):
    c = []
    l1 = [0] * len(l)
    res = []
    for i in range(len(l)):
        x = l[i]
        t = [0] * 10
        while x != 0:
            tem = x % 10
            t[tem] += 1
            x //= 10
        c.append(t)
        for j in range(len(c)-1):
            ten = c[-1:]
            tem1 = c[j:j+1]
            if c[j:j+1] == c[-1:]:
                l1[j], l1[len(c)-1] = 1, 1
    for i in range(len(l)):
        if l1[i] != 1:
            res.append(l[i])
    return res


while True:
    n = int(input())
    if n == 0: break
    l = [int(x) for x in input().split()]
    l.sort()
    res = func(l)
    if res != []:
        for x in res:
            print(x, end=' ')
        print()
    else:
        print('None')


 

0.0分

0 人评分

新上线《蓝桥杯辅导》课程,近五年的蓝桥杯省赛与国赛真题都有,从读题开始理解题意、梳理思路、实现代码再提交评测全过程,可有效提升获奖比例甚至进国赛!课程介绍、试听请猛击这里

  评论区

  • «
  • »