結果

問題 No.1103 Directed Length Sum
ユーザー tyawanmusityawanmusi
提出日時 2020-07-03 22:11:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,467 ms / 3,000 ms
コード長 414 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 340,108 KB
最終ジャッジ日時 2024-09-17 02:32:45
合計ジャッジ時間 13,481 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,420 KB
testcase_01 AC 34 ms
52,872 KB
testcase_02 AC 585 ms
340,108 KB
testcase_03 AC 458 ms
295,804 KB
testcase_04 AC 788 ms
199,936 KB
testcase_05 AC 1,467 ms
259,916 KB
testcase_06 AC 510 ms
194,356 KB
testcase_07 AC 123 ms
102,124 KB
testcase_08 AC 176 ms
118,388 KB
testcase_09 AC 91 ms
91,156 KB
testcase_10 AC 242 ms
133,280 KB
testcase_11 AC 877 ms
237,944 KB
testcase_12 AC 533 ms
194,524 KB
testcase_13 AC 269 ms
137,968 KB
testcase_14 AC 87 ms
86,772 KB
testcase_15 AC 393 ms
153,152 KB
testcase_16 AC 1,036 ms
259,292 KB
testcase_17 AC 1,059 ms
261,624 KB
testcase_18 AC 234 ms
132,996 KB
testcase_19 AC 897 ms
262,196 KB
testcase_20 AC 104 ms
96,980 KB
testcase_21 AC 156 ms
113,328 KB
testcase_22 AC 721 ms
208,168 KB
testcase_23 AC 410 ms
176,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
n=int(input())
edge=[[]for _ in range(n)]
to=[0]*n
p=[0]*n
for _ in range(n-1):
  a,b=map(int,input().split())
  a-=1
  b-=1
  edge[a].append(b)
  to[b]=1
stack=[to.index(0)]
visited=set(stack)
mod=10**9+7
ans=0
for i in stack:
  for j in edge[i]:
    if j in visited:continue
    visited.add(j)
    stack.append(j)
    p[j]+=p[i]+1
  ans+=p[i]*(p[i]+1)//2
  ans%=mod
print(ans)
0