結果

問題 No.1098 LCAs
ユーザー marroncastlemarroncastle
提出日時 2020-06-26 22:51:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 503 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 48,384 KB
最終ジャッジ日時 2024-07-04 22:59:53
合計ジャッジ時間 16,109 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 33 ms
11,008 KB
testcase_14 AC 34 ms
10,880 KB
testcase_15 AC 34 ms
10,880 KB
testcase_16 AC 35 ms
10,752 KB
testcase_17 AC 35 ms
10,880 KB
testcase_18 AC 1,123 ms
47,360 KB
testcase_19 AC 1,161 ms
47,488 KB
testcase_20 AC 1,130 ms
47,488 KB
testcase_21 AC 1,178 ms
47,360 KB
testcase_22 AC 1,154 ms
47,360 KB
testcase_23 AC 1,009 ms
42,496 KB
testcase_24 AC 993 ms
42,624 KB
testcase_25 AC 978 ms
42,112 KB
testcase_26 AC 1,007 ms
48,384 KB
testcase_27 AC 1,029 ms
48,384 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(ans,edge,visited,v):
  cnt = 1
  for w in edge[v]:
    if visited[w]==False:
      visited[w]=True
      a = dfs(ans,edge,visited,w)
      ans[v] -= a*a
      cnt += a
  ans[v] += cnt**2
  return cnt

def solve():
  N = int(input())
  edge = [[] for _ in range(N)]
  visited = [False]*N
  for _ in range(N-1):
    a,b = map(int, input().split())
    edge[a-1].append(b-1)
    edge[b-1].append(a-1)
  ans = [0]*N
  visited[0] = True
  dfs(ans,edge,visited,0)
  return ans
print(*solve(),sep='\n')
0