結果
問題 | No.1103 Directed Length Sum |
ユーザー | anagohirame |
提出日時 | 2020-07-03 23:46:56 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 542 bytes |
コンパイル時間 | 288 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 851,788 KB |
最終ジャッジ日時 | 2024-09-17 05:06:56 |
合計ジャッジ時間 | 3,873 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
51,840 KB |
testcase_01 | AC | 38 ms
52,480 KB |
testcase_02 | MLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
import sys sys.setrecursionlimit(1000010) def input(): return sys.stdin.buffer.readline()[:-1] MOD = 10**9+7 n = int(input()) aff = [0 for _ in range(n)] adj = [[] for _ in range(n)] for _ in range(n-1): u, v = map(int, input().split()) adj[u-1].append(v-1) aff[v-1] += 1 for i, x in enumerate(aff): if x == 0: root = i break ans = 0 dp_val = [0 for _ in range(n)] dp_num = [1 for _ in range(n)] ans = 0 def dfs(x, dep): global ans ans += dep * (dep+1) // 2 ans %= MOD for v in adj[x]: dfs(v, dep+1) dfs(root, 0) print(ans)