結果

問題 No.2427 Tree Distance Two
ユーザー ああいいああいい
提出日時 2023-08-18 23:22:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 716 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 128,000 KB
最終ジャッジ日時 2024-11-28 10:26:59
合計ジャッジ時間 13,729 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 716 ms
114,944 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 715 ms
115,072 KB
testcase_06 AC 43 ms
52,480 KB
testcase_07 AC 569 ms
127,104 KB
testcase_08 AC 605 ms
126,464 KB
testcase_09 AC 587 ms
126,080 KB
testcase_10 AC 584 ms
128,000 KB
testcase_11 AC 609 ms
125,340 KB
testcase_12 AC 650 ms
122,848 KB
testcase_13 AC 679 ms
120,320 KB
testcase_14 AC 330 ms
112,896 KB
testcase_15 AC 40 ms
52,224 KB
testcase_16 AC 41 ms
52,352 KB
testcase_17 AC 41 ms
52,480 KB
testcase_18 AC 41 ms
52,736 KB
testcase_19 AC 40 ms
52,224 KB
testcase_20 AC 95 ms
77,292 KB
testcase_21 AC 101 ms
77,824 KB
testcase_22 AC 82 ms
74,752 KB
testcase_23 AC 81 ms
74,712 KB
testcase_24 AC 97 ms
77,312 KB
testcase_25 AC 219 ms
86,304 KB
testcase_26 AC 467 ms
99,968 KB
testcase_27 AC 351 ms
93,468 KB
testcase_28 AC 684 ms
111,324 KB
testcase_29 AC 597 ms
107,136 KB
testcase_30 AC 450 ms
99,072 KB
testcase_31 AC 300 ms
91,044 KB
testcase_32 AC 439 ms
98,944 KB
testcase_33 AC 393 ms
96,000 KB
testcase_34 AC 174 ms
82,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
G = [[] for _ in range(N)]
Gnum = [0] * N

for _ in range(N - 1):
	u,v = map(int,input().split())
	u -= 1
	v -= 1
	Gnum[u] += 1
	Gnum[v] += 1
	G[u].append(v)
	G[v].append(u)
	
for i in range(N):
	ans = 0
	for u in G[i]:
		ans += Gnum[u] - 1
	print(ans)
0