結果

問題 No.2427 Tree Distance Two
ユーザー KudeKude
提出日時 2023-08-18 21:08:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 769 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 125,832 KB
最終ジャッジ日時 2024-05-06 02:40:40
合計ジャッジ時間 13,870 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 37 ms
52,068 KB
testcase_03 AC 769 ms
115,328 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 744 ms
114,560 KB
testcase_06 AC 34 ms
51,456 KB
testcase_07 AC 581 ms
124,660 KB
testcase_08 AC 637 ms
125,212 KB
testcase_09 AC 562 ms
124,132 KB
testcase_10 AC 581 ms
125,832 KB
testcase_11 AC 624 ms
123,392 KB
testcase_12 AC 682 ms
121,148 KB
testcase_13 AC 703 ms
118,400 KB
testcase_14 AC 350 ms
113,024 KB
testcase_15 AC 37 ms
51,712 KB
testcase_16 AC 38 ms
52,224 KB
testcase_17 AC 34 ms
52,224 KB
testcase_18 AC 36 ms
52,096 KB
testcase_19 AC 37 ms
51,584 KB
testcase_20 AC 99 ms
77,312 KB
testcase_21 AC 100 ms
77,312 KB
testcase_22 AC 93 ms
76,928 KB
testcase_23 AC 87 ms
76,544 KB
testcase_24 AC 99 ms
77,368 KB
testcase_25 AC 235 ms
86,272 KB
testcase_26 AC 457 ms
99,712 KB
testcase_27 AC 333 ms
93,312 KB
testcase_28 AC 710 ms
111,616 KB
testcase_29 AC 604 ms
107,392 KB
testcase_30 AC 457 ms
99,712 KB
testcase_31 AC 289 ms
91,904 KB
testcase_32 AC 433 ms
99,456 KB
testcase_33 AC 379 ms
96,128 KB
testcase_34 AC 163 ms
82,176 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