bobby


私信TA

用户名:yuncker

访问量:7291

签 名:

等  级
排  名 1564
经  验 2780
参赛次数 0
文章发表 23
年  龄 24
在职情况 学生
学  校 华东交通大学
专  业 软件

  自我简介:

解题思路:

注意事项:

参考代码:

n=int(input())
f=[]
value=[]
for i in range(1,n):
   f.append('from[{}]'.format(i))
for i in range(n):
    value.append(int(input()))
f_v=dict(zip(f,value))
cnt=1
for k in range(1,n):
    temp=1
    key=k
    while f_v['from[{}]'.format(key)]!=0:
        temp+=1
        key=f_v['from[{}]'.format(key)]
    cnt=max(cnt,temp)
print(cnt)


 

0.0分

0 人评分

  评论区

  • «
  • »