結果

問題 No.2427 Tree Distance Two
ユーザー 👑 rin204rin204
提出日時 2023-09-18 19:09:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 746 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 124,712 KB
最終ジャッジ日時 2024-07-05 08:57:01
合計ジャッジ時間 15,219 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 734 ms
112,252 KB
testcase_04 AC 37 ms
51,552 KB
testcase_05 AC 746 ms
112,384 KB
testcase_06 AC 38 ms
51,456 KB
testcase_07 AC 581 ms
124,520 KB
testcase_08 AC 616 ms
123,180 KB
testcase_09 AC 569 ms
122,920 KB
testcase_10 AC 589 ms
124,712 KB
testcase_11 AC 603 ms
122,752 KB
testcase_12 AC 620 ms
120,628 KB
testcase_13 AC 684 ms
117,776 KB
testcase_14 AC 320 ms
109,920 KB
testcase_15 AC 38 ms
52,608 KB
testcase_16 AC 39 ms
52,480 KB
testcase_17 AC 39 ms
51,712 KB
testcase_18 AC 40 ms
51,840 KB
testcase_19 AC 39 ms
52,096 KB
testcase_20 AC 99 ms
77,672 KB
testcase_21 AC 103 ms
77,440 KB
testcase_22 AC 86 ms
75,008 KB
testcase_23 AC 89 ms
74,368 KB
testcase_24 AC 103 ms
77,056 KB
testcase_25 AC 206 ms
85,504 KB
testcase_26 AC 443 ms
98,048 KB
testcase_27 AC 315 ms
92,160 KB
testcase_28 AC 681 ms
108,800 KB
testcase_29 AC 587 ms
105,344 KB
testcase_30 AC 421 ms
97,920 KB
testcase_31 AC 286 ms
89,984 KB
testcase_32 AC 447 ms
97,408 KB
testcase_33 AC 391 ms
94,976 KB
testcase_34 AC 165 ms
82,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for i in range(n):
    ans = 0
    for u in edges[i]:
        ans += len(edges[u]) - 1
    print(ans)
0