結果
問題 | No.1103 Directed Length Sum |
ユーザー | marroncastle |
提出日時 | 2020-07-25 19:31:01 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,530 ms / 3,000 ms |
コード長 | 605 bytes |
コンパイル時間 | 385 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 272,592 KB |
最終ジャッジ日時 | 2024-06-27 13:38:19 |
合計ジャッジ時間 | 15,325 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
53,760 KB |
testcase_01 | AC | 42 ms
53,504 KB |
testcase_02 | AC | 551 ms
191,844 KB |
testcase_03 | AC | 655 ms
272,592 KB |
testcase_04 | AC | 874 ms
143,360 KB |
testcase_05 | AC | 1,530 ms
207,776 KB |
testcase_06 | AC | 534 ms
117,136 KB |
testcase_07 | AC | 152 ms
84,684 KB |
testcase_08 | AC | 206 ms
89,600 KB |
testcase_09 | AC | 126 ms
81,792 KB |
testcase_10 | AC | 281 ms
95,188 KB |
testcase_11 | AC | 895 ms
150,108 KB |
testcase_12 | AC | 543 ms
117,280 KB |
testcase_13 | AC | 279 ms
95,796 KB |
testcase_14 | AC | 102 ms
79,360 KB |
testcase_15 | AC | 424 ms
106,240 KB |
testcase_16 | AC | 1,025 ms
162,560 KB |
testcase_17 | AC | 1,071 ms
164,608 KB |
testcase_18 | AC | 285 ms
94,080 KB |
testcase_19 | AC | 939 ms
153,216 KB |
testcase_20 | AC | 131 ms
82,260 KB |
testcase_21 | AC | 192 ms
87,808 KB |
testcase_22 | AC | 766 ms
136,928 KB |
testcase_23 | AC | 448 ms
108,828 KB |
ソースコード
def main(): from collections import deque import sys input = sys.stdin.readline N = int(input()) edge = [[] for _ in range(N)] roots = [True]*N for _ in range(N-1): a,b = map(int, input().split()) roots[b-1] = False edge[a-1].append(b-1) ans = 0 mod = 10**9+7 d = deque() root = roots.index(True) d.append([root,0]) while len(d)>0: v,depth = d.popleft() ans += depth*(depth+1)//2 ans %= mod for w in edge[v]: d.append([w,depth+1]) print(ans) if __name__ == '__main__': main()