結果

問題 No.1103 Directed Length Sum
ユーザー tyawanmusityawanmusi
提出日時 2020-07-03 22:09:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,024 ms / 3,000 ms
コード長 390 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 81,748 KB
実行使用メモリ 347,016 KB
最終ジャッジ日時 2024-09-17 02:24:47
合計ジャッジ時間 19,594 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 1,071 ms
347,016 KB
testcase_03 AC 885 ms
292,092 KB
testcase_04 AC 1,167 ms
246,400 KB
testcase_05 AC 2,024 ms
259,716 KB
testcase_06 AC 758 ms
195,324 KB
testcase_07 AC 210 ms
102,072 KB
testcase_08 AC 298 ms
118,580 KB
testcase_09 AC 157 ms
91,684 KB
testcase_10 AC 389 ms
133,752 KB
testcase_11 AC 1,290 ms
260,768 KB
testcase_12 AC 777 ms
195,968 KB
testcase_13 AC 405 ms
134,004 KB
testcase_14 AC 138 ms
87,360 KB
testcase_15 AC 660 ms
141,416 KB
testcase_16 AC 1,502 ms
258,524 KB
testcase_17 AC 1,695 ms
262,224 KB
testcase_18 AC 426 ms
133,792 KB
testcase_19 AC 1,297 ms
240,072 KB
testcase_20 AC 179 ms
91,692 KB
testcase_21 AC 277 ms
113,532 KB
testcase_22 AC 1,068 ms
242,116 KB
testcase_23 AC 655 ms
176,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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
for i in stack:
  for j in edge[i]:
    if j in visited:continue
    visited.add(j)
    to[j]-=1
    if to[j]==0:stack.append(j)
    p[j]+=p[i]+1
print(sum(i*(i+1)//2 for i in p)%mod)
0