結果

問題 No.2427 Tree Distance Two
ユーザー FromBooskaFromBooska
提出日時 2023-10-05 17:11:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 699 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 127,780 KB
最終ジャッジ日時 2024-07-26 15:03:49
合計ジャッジ時間 15,001 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,672 KB
testcase_01 AC 38 ms
52,156 KB
testcase_02 AC 39 ms
52,572 KB
testcase_03 AC 699 ms
114,668 KB
testcase_04 AC 38 ms
53,680 KB
testcase_05 AC 684 ms
114,920 KB
testcase_06 AC 39 ms
52,688 KB
testcase_07 AC 547 ms
127,236 KB
testcase_08 AC 590 ms
126,652 KB
testcase_09 AC 554 ms
126,348 KB
testcase_10 AC 563 ms
127,780 KB
testcase_11 AC 569 ms
125,592 KB
testcase_12 AC 607 ms
122,740 KB
testcase_13 AC 603 ms
120,596 KB
testcase_14 AC 312 ms
112,796 KB
testcase_15 AC 37 ms
53,428 KB
testcase_16 AC 38 ms
52,864 KB
testcase_17 AC 38 ms
52,280 KB
testcase_18 AC 39 ms
52,680 KB
testcase_19 AC 38 ms
52,332 KB
testcase_20 AC 89 ms
77,448 KB
testcase_21 AC 94 ms
77,636 KB
testcase_22 AC 76 ms
74,752 KB
testcase_23 AC 78 ms
74,464 KB
testcase_24 AC 91 ms
77,396 KB
testcase_25 AC 203 ms
86,184 KB
testcase_26 AC 439 ms
99,976 KB
testcase_27 AC 321 ms
93,168 KB
testcase_28 AC 655 ms
111,432 KB
testcase_29 AC 580 ms
107,608 KB
testcase_30 AC 423 ms
99,084 KB
testcase_31 AC 273 ms
91,088 KB
testcase_32 AC 423 ms
98,964 KB
testcase_33 AC 371 ms
96,384 KB
testcase_34 AC 156 ms
83,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# distance 2であれば次数degreeから計算可能

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