結果

問題 No.2427 Tree Distance Two
ユーザー CecilCecil
提出日時 2023-08-19 00:59:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 337 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 74,676 KB
最終ジャッジ日時 2024-05-06 08:06:31
合計ジャッジ時間 37,262 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 TLE -
testcase_04 AC 28 ms
10,752 KB
testcase_05 TLE -
testcase_06 AC 28 ms
10,880 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,610 ms
70,488 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 70 ms
12,544 KB
testcase_21 AC 78 ms
12,672 KB
testcase_22 AC 39 ms
11,392 KB
testcase_23 AC 35 ms
11,136 KB
testcase_24 AC 72 ms
12,544 KB
testcase_25 AC 572 ms
26,620 KB
testcase_26 AC 1,423 ms
55,296 KB
testcase_27 AC 1,016 ms
38,268 KB
testcase_28 TLE -
testcase_29 AC 1,950 ms
61,804 KB
testcase_30 AC 1,413 ms
55,188 KB
testcase_31 AC 879 ms
35,796 KB
testcase_32 AC 1,400 ms
55,176 KB
testcase_33 AC 1,220 ms
42,408 KB
testcase_34 AC 368 ms
21,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as dd

n = int(input())

G = [ [] for _ in range(n+1) ]
deg = dd(lambda:0)

for _ in range(n-1):
    u,v = map(int, input().split())
    G[u].append(v)
    G[v].append(u)
    deg[u] += 1
    deg[v] += 1

for v in range(1, n+1):
    ans = -deg[v]
    for u in G[v]:
        ans += deg[u]
    print(ans)
0