2023级田文杰


私信TA

用户名:dotcpp0709537

访问量:441

签 名:

等  级
排  名 3885
经  验 1811
参赛次数 9
文章发表 5
年  龄 0
在职情况 学生
学  校 阜阳师范大学
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

n=int(input())

a_list=list(map(int,input().split()))

a_list.sort()

count=dict()

for i in a_list:

  if i not in count:

    count[i]=1

  else:

    count[i]+=1

i=a_list[0]

while count[i]:

  if count[i]%(i+1)!=0:

    break

  else:

    if i+1 not in count:

      count[i+1]=0

    count[i+1]+=count[i]//(i+1)

    i+=1

print(i)


 

0.0分

2 人评分

  评论区

  • «
  • »