結果

問題 No.2427 Tree Distance Two
ユーザー rlangevinrlangevin
提出日時 2023-09-18 14:54:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 550 ms / 2,000 ms
コード長 329 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 124,160 KB
最終ジャッジ日時 2024-07-05 05:38:25
合計ジャッジ時間 12,736 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 550 ms
113,536 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 522 ms
113,284 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 427 ms
122,500 KB
testcase_08 AC 450 ms
122,504 KB
testcase_09 AC 409 ms
122,240 KB
testcase_10 AC 435 ms
124,160 KB
testcase_11 AC 438 ms
121,812 KB
testcase_12 AC 462 ms
119,076 KB
testcase_13 AC 467 ms
118,324 KB
testcase_14 AC 232 ms
111,872 KB
testcase_15 AC 37 ms
52,096 KB
testcase_16 AC 41 ms
51,968 KB
testcase_17 AC 39 ms
52,096 KB
testcase_18 AC 40 ms
52,224 KB
testcase_19 AC 40 ms
51,456 KB
testcase_20 AC 77 ms
73,088 KB
testcase_21 AC 86 ms
76,800 KB
testcase_22 AC 72 ms
68,096 KB
testcase_23 AC 71 ms
66,688 KB
testcase_24 AC 82 ms
73,600 KB
testcase_25 AC 166 ms
85,888 KB
testcase_26 AC 323 ms
99,200 KB
testcase_27 AC 218 ms
93,056 KB
testcase_28 AC 486 ms
110,976 KB
testcase_29 AC 411 ms
106,496 KB
testcase_30 AC 300 ms
98,304 KB
testcase_31 AC 204 ms
90,752 KB
testcase_32 AC 313 ms
98,304 KB
testcase_33 AC 275 ms
96,128 KB
testcase_34 AC 173 ms
82,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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