結果

問題 No.2532 Want Play More
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-06-09 13:29:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,008 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 369,940 KB
最終ジャッジ日時 2024-09-13 07:00:11
合計ジャッジ時間 12,359 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,920 KB
testcase_01 AC 722 ms
133,764 KB
testcase_02 AC 703 ms
134,596 KB
testcase_03 AC 700 ms
132,448 KB
testcase_04 AC 657 ms
131,532 KB
testcase_05 AC 645 ms
129,436 KB
testcase_06 AC 1,008 ms
369,940 KB
testcase_07 AC 104 ms
77,900 KB
testcase_08 AC 125 ms
79,028 KB
testcase_09 AC 116 ms
78,096 KB
testcase_10 AC 377 ms
103,848 KB
testcase_11 AC 356 ms
103,256 KB
testcase_12 AC 535 ms
119,796 KB
testcase_13 AC 409 ms
108,472 KB
testcase_14 AC 201 ms
87,408 KB
testcase_15 AC 660 ms
133,704 KB
testcase_16 AC 581 ms
125,156 KB
testcase_17 AC 116 ms
79,188 KB
testcase_18 AC 445 ms
114,080 KB
testcase_19 AC 571 ms
126,016 KB
testcase_20 AC 37 ms
53,112 KB
testcase_21 AC 37 ms
53,500 KB
testcase_22 AC 36 ms
52,404 KB
testcase_23 AC 36 ms
52,348 KB
testcase_24 AC 36 ms
52,136 KB
testcase_25 AC 37 ms
52,020 KB
testcase_26 AC 36 ms
52,752 KB
testcase_27 AC 36 ms
52,488 KB
testcase_28 AC 302 ms
163,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def DFS(now,where):
  if tree[now]=={where} or len(tree[now])==0:
    return 0,0
  else:
    mini=[]
    maxi=[]
    for i in tree[now]:
      if i!=where:
        small,large=DFS(i,now)
        mini.append(small+1)
        maxi.append(large+1)
    return min(maxi),max(mini)

sys.setrecursionlimit(500000)
N=int(input())
tree=[set() for i in range(N)]
for i in range(N-1):
  a,b=map(int,input().split())
  tree[a-1].add(b-1)
  tree[b-1].add(a-1)
second,first=DFS(0,-1)
print(first)
print(second)
0