結果

問題 No.2427 Tree Distance Two
ユーザー Akijin_007Akijin_007
提出日時 2023-08-18 21:26:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 699 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 130,156 KB
最終ジャッジ日時 2024-05-06 03:16:09
合計ジャッジ時間 13,733 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 675 ms
116,972 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 699 ms
116,608 KB
testcase_06 AC 37 ms
51,456 KB
testcase_07 AC 503 ms
129,400 KB
testcase_08 AC 553 ms
128,768 KB
testcase_09 AC 525 ms
128,256 KB
testcase_10 AC 536 ms
130,156 KB
testcase_11 AC 549 ms
127,704 KB
testcase_12 AC 579 ms
125,008 KB
testcase_13 AC 624 ms
122,240 KB
testcase_14 AC 320 ms
115,676 KB
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 38 ms
52,224 KB
testcase_17 AC 35 ms
52,224 KB
testcase_18 AC 38 ms
52,480 KB
testcase_19 AC 36 ms
51,584 KB
testcase_20 AC 91 ms
77,060 KB
testcase_21 AC 93 ms
77,172 KB
testcase_22 AC 83 ms
76,672 KB
testcase_23 AC 76 ms
75,360 KB
testcase_24 AC 92 ms
77,312 KB
testcase_25 AC 185 ms
86,888 KB
testcase_26 AC 415 ms
100,864 KB
testcase_27 AC 304 ms
93,952 KB
testcase_28 AC 644 ms
113,152 KB
testcase_29 AC 561 ms
108,984 KB
testcase_30 AC 420 ms
100,352 KB
testcase_31 AC 300 ms
91,904 KB
testcase_32 AC 383 ms
100,352 KB
testcase_33 AC 332 ms
97,024 KB
testcase_34 AC 144 ms
83,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
to = [[] for i in range(N)]
d = [0] * N
for i in range(N-1):
    u, v = map(int, input().split())
    to[u-1].append(v-1)
    to[v-1].append(u-1)
    d[u-1] += 1
    d[v-1] += 1

ans = [0] * N
for i in range(N):
    for x in to[i]:
        ans[i] += d[x]
    ans[i] -= d[i]

for i in range(N):
    print(ans[i])
0