結果

問題 No.2427 Tree Distance Two
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-08-18 21:21:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 647 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 150,656 KB
最終ジャッジ日時 2024-11-28 05:30:00
合計ジャッジ時間 11,976 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 42 ms
51,328 KB
testcase_03 AC 647 ms
137,984 KB
testcase_04 AC 43 ms
51,712 KB
testcase_05 AC 636 ms
137,728 KB
testcase_06 AC 42 ms
51,712 KB
testcase_07 AC 442 ms
149,392 KB
testcase_08 AC 497 ms
149,248 KB
testcase_09 AC 477 ms
149,376 KB
testcase_10 AC 482 ms
150,656 KB
testcase_11 AC 493 ms
149,204 KB
testcase_12 AC 537 ms
142,372 KB
testcase_13 AC 567 ms
138,060 KB
testcase_14 AC 261 ms
138,240 KB
testcase_15 AC 42 ms
51,712 KB
testcase_16 AC 42 ms
51,968 KB
testcase_17 AC 42 ms
51,200 KB
testcase_18 AC 43 ms
52,224 KB
testcase_19 AC 42 ms
51,968 KB
testcase_20 AC 82 ms
73,472 KB
testcase_21 AC 93 ms
77,312 KB
testcase_22 AC 73 ms
68,480 KB
testcase_23 AC 68 ms
66,816 KB
testcase_24 AC 82 ms
73,856 KB
testcase_25 AC 183 ms
92,672 KB
testcase_26 AC 361 ms
118,016 KB
testcase_27 AC 271 ms
104,704 KB
testcase_28 AC 558 ms
138,368 KB
testcase_29 AC 506 ms
130,304 KB
testcase_30 AC 383 ms
107,264 KB
testcase_31 AC 248 ms
101,760 KB
testcase_32 AC 382 ms
112,128 KB
testcase_33 AC 344 ms
110,464 KB
testcase_34 AC 145 ms
85,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""


"""

import sys
from sys import stdin

N = int(stdin.readline())

lis = [ [] for i in range(N) ]

for i in range(N-1):

    u,v = map(int,stdin.readline().split())
    u -= 1
    v -= 1

    lis[u].append(v)
    lis[v].append(u)

ans = []

for v in range(N):

    now = 0
    for nex in lis[v]:
        now += len(lis[nex])-1

    ans.append(now)

print (*ans,sep="\n")
0