結果

問題 No.1103 Directed Length Sum
ユーザー marroncastlemarroncastle
提出日時 2020-07-25 14:35:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 562 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 356,376 KB
最終ジャッジ日時 2024-06-27 05:41:17
合計ジャッジ時間 6,816 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 TLE -
testcase_03 AC 2,454 ms
136,280 KB
testcase_04 AC 2,063 ms
86,616 KB
testcase_05 TLE -
testcase_06 AC 1,328 ms
60,176 KB
testcase_07 AC 304 ms
22,656 KB
testcase_08 AC 467 ms
28,928 KB
testcase_09 AC 191 ms
18,048 KB
testcase_10 AC 663 ms
35,584 KB
testcase_11 AC 2,318 ms
93,544 KB
testcase_12 AC 1,377 ms
60,720 KB
testcase_13 AC 682 ms
36,224 KB
testcase_14 AC 152 ms
16,384 KB
testcase_15 AC 1,073 ms
49,584 KB
testcase_16 AC 2,621 ms
103,888 KB
testcase_17 AC 2,717 ms
107,924 KB
testcase_18 AC 655 ms
35,328 KB
testcase_19 AC 2,391 ms
95,564 KB
testcase_20 AC 235 ms
19,840 KB
testcase_21 AC 432 ms
27,264 KB
testcase_22 AC 1,940 ms
80,252 KB
testcase_23 AC 1,133 ms
52,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**8)
input=sys.stdin.readline

def dfs(v,mod):
  nums[v] = 0
  child[v] = 0
  if len(edge[v])==0:
    return
  for u in edge[v]:
    if nums[u] == -1:
      dfs(u,mod)
    nums[v] += nums[u]+child[u]+1
    child[v] += child[u]+1
  nums[v] %= mod
  child[v] %= mod
  return

N = int(input())
mod = 10**9+7
edge = [[] for _ in range(N)]
for _ in range(N-1):
  a,b = map(int, input().split())
  edge[a-1].append(b-1)
nums = [-1]*N
child = [-1]*N
for i in range(N):
  if nums[i] == -1:
    dfs(i,mod)
ans = sum(nums)%mod
print(ans)
0