結果

問題 No.1484 木に数を書き込む問題 / Just Write Numbers! 2
ユーザー 小野寺健小野寺健
提出日時 2021-04-27 17:00:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 418 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,288 KB
最終ジャッジ日時 2024-07-06 12:41:20
合計ジャッジ時間 22,532 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 40 ms
11,264 KB
testcase_05 AC 95 ms
13,056 KB
testcase_06 AC 101 ms
13,184 KB
testcase_07 AC 65 ms
12,160 KB
testcase_08 AC 112 ms
13,824 KB
testcase_09 AC 106 ms
13,312 KB
testcase_10 AC 102 ms
13,184 KB
testcase_11 AC 95 ms
12,928 KB
testcase_12 AC 82 ms
12,544 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 905 ms
36,864 KB
testcase_15 AC 857 ms
35,584 KB
testcase_16 AC 780 ms
34,048 KB
testcase_17 AC 566 ms
28,032 KB
testcase_18 AC 994 ms
39,424 KB
testcase_19 AC 1,237 ms
44,032 KB
testcase_20 AC 1,266 ms
44,160 KB
testcase_21 AC 1,204 ms
43,904 KB
testcase_22 AC 1,192 ms
44,032 KB
testcase_23 AC 1,227 ms
43,904 KB
testcase_24 AC 1,199 ms
44,032 KB
testcase_25 AC 1,202 ms
44,032 KB
testcase_26 AC 1,222 ms
44,032 KB
testcase_27 AC 1,202 ms
44,032 KB
testcase_28 AC 1,209 ms
44,032 KB
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 849 ms
38,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

V = [[] for _ in range(N)]

for _ in range(N-1):
    a, b = map(int, input().split())
    V[a-1].append(b-1)
    V[b-1].append(a-1)
    
def dfs(prev, i, n):
    if len(V[i]) == 1 and V[i][0] == prev:
        return (n, i)
    rtn = (-1, -1)
    for j in V[i]:
        if j != prev:
            rtn = max(rtn, dfs(i, j, n+1))
    return rtn

n, u= dfs(-1, 0, 0)
n, v = dfs(-1, u, 0)

print(2*(N-1)-n)
0