結果

問題 No.2427 Tree Distance Two
ユーザー KudeKude
提出日時 2023-08-18 21:08:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 962 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 125,504 KB
最終ジャッジ日時 2024-11-28 04:52:48
合計ジャッジ時間 16,425 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 43 ms
51,968 KB
testcase_03 AC 962 ms
114,432 KB
testcase_04 AC 41 ms
51,328 KB
testcase_05 AC 921 ms
114,808 KB
testcase_06 AC 40 ms
51,584 KB
testcase_07 AC 666 ms
124,644 KB
testcase_08 AC 743 ms
125,504 KB
testcase_09 AC 669 ms
124,160 KB
testcase_10 AC 689 ms
125,312 KB
testcase_11 AC 719 ms
123,908 KB
testcase_12 AC 781 ms
120,892 KB
testcase_13 AC 829 ms
118,912 KB
testcase_14 AC 408 ms
112,384 KB
testcase_15 AC 40 ms
51,840 KB
testcase_16 AC 41 ms
52,736 KB
testcase_17 AC 39 ms
52,096 KB
testcase_18 AC 42 ms
51,968 KB
testcase_19 AC 40 ms
52,352 KB
testcase_20 AC 106 ms
76,800 KB
testcase_21 AC 112 ms
77,696 KB
testcase_22 AC 101 ms
76,288 KB
testcase_23 AC 94 ms
76,752 KB
testcase_24 AC 110 ms
77,184 KB
testcase_25 AC 281 ms
86,400 KB
testcase_26 AC 585 ms
99,584 KB
testcase_27 AC 420 ms
93,312 KB
testcase_28 AC 871 ms
111,744 KB
testcase_29 AC 760 ms
107,392 KB
testcase_30 AC 570 ms
99,328 KB
testcase_31 AC 385 ms
91,860 KB
testcase_32 AC 569 ms
99,456 KB
testcase_33 AC 515 ms
96,172 KB
testcase_34 AC 198 ms
82,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
g = [[] for _ in range(n)]
for _ in range(n - 1):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    g[u].append(v)
    g[v].append(u)
for u in range(n):
    ans = sum(len(g[v]) - 1 for v in g[u])
    print(ans)
0