結果

問題 No.2427 Tree Distance Two
ユーザー hiro1729hiro1729
提出日時 2023-09-11 08:36:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 648 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 128,832 KB
最終ジャッジ日時 2024-06-28 23:14:58
合計ジャッジ時間 13,626 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,552 KB
testcase_01 AC 31 ms
52,088 KB
testcase_02 AC 32 ms
53,400 KB
testcase_03 AC 648 ms
117,896 KB
testcase_04 AC 33 ms
52,876 KB
testcase_05 AC 643 ms
118,460 KB
testcase_06 AC 32 ms
52,616 KB
testcase_07 AC 507 ms
127,860 KB
testcase_08 AC 553 ms
127,948 KB
testcase_09 AC 552 ms
126,736 KB
testcase_10 AC 520 ms
128,832 KB
testcase_11 AC 556 ms
126,520 KB
testcase_12 AC 581 ms
123,988 KB
testcase_13 AC 599 ms
121,408 KB
testcase_14 AC 309 ms
115,844 KB
testcase_15 AC 35 ms
53,008 KB
testcase_16 AC 36 ms
52,652 KB
testcase_17 AC 35 ms
53,160 KB
testcase_18 AC 36 ms
53,160 KB
testcase_19 AC 35 ms
54,012 KB
testcase_20 AC 91 ms
77,296 KB
testcase_21 AC 86 ms
77,340 KB
testcase_22 AC 80 ms
77,132 KB
testcase_23 AC 76 ms
76,600 KB
testcase_24 AC 87 ms
77,320 KB
testcase_25 AC 188 ms
86,860 KB
testcase_26 AC 370 ms
101,396 KB
testcase_27 AC 289 ms
94,392 KB
testcase_28 AC 610 ms
114,692 KB
testcase_29 AC 523 ms
109,508 KB
testcase_30 AC 371 ms
100,732 KB
testcase_31 AC 248 ms
92,920 KB
testcase_32 AC 375 ms
101,276 KB
testcase_33 AC 326 ms
98,004 KB
testcase_34 AC 144 ms
83,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
g = [[] for _ in range(n)]
d = [0 for _ in range(n)]
for _ in range(n - 1):
	a, b = map(int, input().split())
	a -= 1
	b -= 1
	d[a] += 1
	d[b] += 1
	g[a].append(b)
	g[b].append(a)
for i in range(n):
	print(sum(d[j] for j in g[i]) - d[i])
0