結果

問題 No.1103 Directed Length Sum
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-09 21:45:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,737 ms / 3,000 ms
コード長 401 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 263,828 KB
最終ジャッジ日時 2024-10-08 10:40:00
合計ジャッジ時間 16,637 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 804 ms
192,384 KB
testcase_03 AC 747 ms
263,828 KB
testcase_04 AC 976 ms
124,928 KB
testcase_05 AC 1,737 ms
157,824 KB
testcase_06 AC 644 ms
108,544 KB
testcase_07 AC 186 ms
83,584 KB
testcase_08 AC 264 ms
88,320 KB
testcase_09 AC 143 ms
80,980 KB
testcase_10 AC 353 ms
91,912 KB
testcase_11 AC 1,085 ms
129,024 KB
testcase_12 AC 652 ms
108,680 KB
testcase_13 AC 351 ms
92,672 KB
testcase_14 AC 131 ms
80,256 KB
testcase_15 AC 523 ms
100,732 KB
testcase_16 AC 1,205 ms
135,808 KB
testcase_17 AC 1,279 ms
138,140 KB
testcase_18 AC 345 ms
91,648 KB
testcase_19 AC 1,102 ms
130,432 KB
testcase_20 AC 167 ms
82,048 KB
testcase_21 AC 250 ms
86,656 KB
testcase_22 AC 911 ms
120,432 KB
testcase_23 AC 563 ms
102,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
mod=10**9+7
es=[[] for _ in range(n)]
par=[0]*n
for _ in range(n-1):
    a,b=map(int,input().split())
    es[a-1].append(b-1)
    par[b-1]=1

for i in range(n):
    if par[i]==0:
        root=i
        break
stack=[(root,0)]
ans=0
while stack:
    now,depth=stack.pop()
    ans+=depth*(depth+1)//2
    ans%=mod
    x=es[now]
    for e in x:
        stack.append((e, depth+1))
print(ans)
0