結果

問題 No.2427 Tree Distance Two
ユーザー miho-4miho-4
提出日時 2023-08-18 21:38:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 637 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 125,568 KB
最終ジャッジ日時 2024-05-06 03:34:26
合計ジャッジ時間 12,168 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,248 KB
testcase_01 AC 42 ms
53,248 KB
testcase_02 AC 38 ms
53,376 KB
testcase_03 AC 637 ms
112,896 KB
testcase_04 AC 46 ms
53,376 KB
testcase_05 AC 627 ms
112,512 KB
testcase_06 AC 45 ms
53,760 KB
testcase_07 AC 485 ms
124,668 KB
testcase_08 AC 559 ms
124,416 KB
testcase_09 AC 514 ms
123,648 KB
testcase_10 AC 515 ms
125,568 KB
testcase_11 AC 504 ms
122,708 KB
testcase_12 AC 560 ms
120,748 KB
testcase_13 AC 595 ms
118,280 KB
testcase_14 AC 297 ms
110,592 KB
testcase_15 AC 39 ms
53,632 KB
testcase_16 AC 39 ms
53,632 KB
testcase_17 AC 40 ms
53,760 KB
testcase_18 AC 41 ms
54,144 KB
testcase_19 AC 39 ms
53,504 KB
testcase_20 AC 95 ms
77,312 KB
testcase_21 AC 99 ms
77,568 KB
testcase_22 AC 88 ms
76,928 KB
testcase_23 AC 87 ms
76,928 KB
testcase_24 AC 96 ms
77,568 KB
testcase_25 AC 177 ms
85,888 KB
testcase_26 AC 377 ms
98,560 KB
testcase_27 AC 276 ms
92,544 KB
testcase_28 AC 569 ms
109,440 KB
testcase_29 AC 498 ms
106,240 KB
testcase_30 AC 381 ms
98,176 KB
testcase_31 AC 281 ms
90,624 KB
testcase_32 AC 367 ms
97,792 KB
testcase_33 AC 343 ms
95,104 KB
testcase_34 AC 157 ms
82,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n=int(input())
E=[[] for _ in range(n+1)]
for _ in range(n-1):
  a,b=map(int,input().split())
  E[a].append(b)
  E[b].append(a)
  
for i in range(1,n+1):
  ans=0
  for e in E[i]:
    ans+=len(E[e])-1
  print(ans)
0