結果

問題 No.2427 Tree Distance Two
ユーザー sotanishysotanishy
提出日時 2023-08-18 21:30:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 479 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 131,328 KB
最終ジャッジ日時 2024-11-28 05:47:00
合計ジャッジ時間 9,570 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 479 ms
124,416 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 453 ms
124,416 KB
testcase_06 AC 36 ms
51,456 KB
testcase_07 AC 360 ms
129,160 KB
testcase_08 AC 389 ms
129,408 KB
testcase_09 AC 360 ms
130,432 KB
testcase_10 AC 365 ms
131,328 KB
testcase_11 AC 377 ms
130,008 KB
testcase_12 AC 422 ms
128,428 KB
testcase_13 AC 463 ms
128,436 KB
testcase_14 AC 212 ms
118,144 KB
testcase_15 AC 35 ms
52,096 KB
testcase_16 AC 36 ms
52,224 KB
testcase_17 AC 35 ms
51,840 KB
testcase_18 AC 36 ms
52,224 KB
testcase_19 AC 35 ms
51,584 KB
testcase_20 AC 69 ms
73,088 KB
testcase_21 AC 77 ms
77,056 KB
testcase_22 AC 63 ms
68,096 KB
testcase_23 AC 61 ms
66,816 KB
testcase_24 AC 73 ms
73,472 KB
testcase_25 AC 150 ms
88,832 KB
testcase_26 AC 282 ms
106,112 KB
testcase_27 AC 218 ms
97,664 KB
testcase_28 AC 433 ms
120,704 KB
testcase_29 AC 359 ms
115,584 KB
testcase_30 AC 285 ms
105,344 KB
testcase_31 AC 202 ms
95,104 KB
testcase_32 AC 266 ms
104,192 KB
testcase_33 AC 262 ms
101,376 KB
testcase_34 AC 122 ms
84,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
G = [[] for _ in range(N)]
for _ in range(N-1):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    G[u].append(v)
    G[v].append(u)
ans = [0] * N
for u in range(N):
    for v in G[u]:
        ans[u] += len(G[v])
    ans[u] -= len(G[u])
print(*ans, sep="\n")
0