結果

問題 No.2532 Want Play More
ユーザー ニックネームニックネーム
提出日時 2023-11-03 23:21:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,193 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 87,808 KB
最終ジャッジ日時 2024-09-25 21:28:47
合計ジャッジ時間 16,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 1,167 ms
43,776 KB
testcase_02 AC 1,193 ms
43,904 KB
testcase_03 AC 1,128 ms
42,624 KB
testcase_04 AC 1,118 ms
42,240 KB
testcase_05 AC 1,066 ms
41,344 KB
testcase_06 AC 1,009 ms
87,808 KB
testcase_07 AC 41 ms
11,264 KB
testcase_08 AC 63 ms
11,904 KB
testcase_09 AC 58 ms
11,648 KB
testcase_10 AC 519 ms
26,368 KB
testcase_11 AC 514 ms
25,984 KB
testcase_12 AC 867 ms
35,456 KB
testcase_13 AC 620 ms
28,672 KB
testcase_14 AC 208 ms
16,768 KB
testcase_15 AC 1,141 ms
43,392 KB
testcase_16 AC 957 ms
38,400 KB
testcase_17 AC 53 ms
11,648 KB
testcase_18 AC 724 ms
32,000 KB
testcase_19 AC 991 ms
39,168 KB
testcase_20 AC 27 ms
10,624 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 28 ms
10,624 KB
testcase_23 AC 27 ms
10,624 KB
testcase_24 AC 28 ms
10,624 KB
testcase_25 AC 28 ms
10,624 KB
testcase_26 AC 27 ms
10,752 KB
testcase_27 AC 28 ms
10,752 KB
testcase_28 AC 838 ms
38,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import setrecursionlimit
setrecursionlimit(10**6)
n = int(input()); adj = [[] for _ in range(n)]
for _ in range(n-1):
    u,v = map(int,input().split())
    adj[u-1].append(v-1); adj[v-1].append(u-1)
def dfs(v,p):
    if len(adj[v])==0 or v!=0 and len(adj[v])==1: return 0,0
    ma = 1; mi = n
    for c in adj[v]:
        if c==p: continue
        x,y = dfs(c,v); ma = max(ma,y+1); mi = min(mi,x+1)
    return ma,mi
print(*dfs(0,-1),sep="\n")
0