結果

問題 No.2427 Tree Distance Two
ユーザー FromBooskaFromBooska
提出日時 2023-08-18 21:51:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 800 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 81,852 KB
実行使用メモリ 128,000 KB
最終ジャッジ日時 2024-11-28 06:37:41
合計ジャッジ時間 14,594 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 800 ms
114,304 KB
testcase_04 AC 40 ms
51,328 KB
testcase_05 AC 791 ms
114,544 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 601 ms
126,860 KB
testcase_08 AC 650 ms
126,080 KB
testcase_09 AC 609 ms
125,952 KB
testcase_10 AC 615 ms
128,000 KB
testcase_11 AC 647 ms
125,268 KB
testcase_12 AC 691 ms
122,824 KB
testcase_13 AC 723 ms
119,808 KB
testcase_14 AC 328 ms
112,384 KB
testcase_15 AC 41 ms
52,096 KB
testcase_16 AC 40 ms
51,968 KB
testcase_17 AC 42 ms
52,352 KB
testcase_18 AC 45 ms
52,096 KB
testcase_19 AC 42 ms
51,840 KB
testcase_20 AC 101 ms
77,440 KB
testcase_21 AC 103 ms
77,308 KB
testcase_22 AC 88 ms
76,592 KB
testcase_23 AC 88 ms
76,544 KB
testcase_24 AC 102 ms
76,928 KB
testcase_25 AC 227 ms
86,400 KB
testcase_26 AC 493 ms
99,456 KB
testcase_27 AC 366 ms
92,416 KB
testcase_28 AC 768 ms
110,880 KB
testcase_29 AC 659 ms
106,880 KB
testcase_30 AC 473 ms
98,560 KB
testcase_31 AC 329 ms
91,008 KB
testcase_32 AC 476 ms
98,944 KB
testcase_33 AC 420 ms
95,616 KB
testcase_34 AC 176 ms
82,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 木、閉路なし、ということはdegreeだけで計算できるか

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