結果

問題 No.2427 Tree Distance Two
ユーザー CecilCecil
提出日時 2023-08-19 00:59:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 337 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 74,676 KB
最終ジャッジ日時 2024-11-28 13:17:17
合計ジャッジ時間 39,822 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 TLE -
testcase_04 AC 30 ms
10,752 KB
testcase_05 TLE -
testcase_06 AC 30 ms
10,752 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,788 ms
70,616 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 79 ms
12,672 KB
testcase_21 AC 89 ms
12,800 KB
testcase_22 AC 46 ms
11,264 KB
testcase_23 AC 40 ms
11,136 KB
testcase_24 AC 81 ms
12,540 KB
testcase_25 AC 628 ms
26,620 KB
testcase_26 AC 1,586 ms
55,528 KB
testcase_27 AC 1,130 ms
38,396 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 1,536 ms
55,348 KB
testcase_31 AC 967 ms
35,764 KB
testcase_32 AC 1,525 ms
55,300 KB
testcase_33 AC 1,338 ms
42,532 KB
testcase_34 AC 393 ms
21,996 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