結果

問題 No.1103 Directed Length Sum
ユーザー rlangevinrlangevin
提出日時 2023-01-02 17:31:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 489 bytes
コンパイル時間 673 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 151,328 KB
最終ジャッジ日時 2024-11-27 01:08:26
合計ジャッジ時間 62,726 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,572 KB
testcase_01 AC 27 ms
17,444 KB
testcase_02 RE -
testcase_03 AC 2,984 ms
127,520 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 877 ms
28,456 KB
testcase_08 AC 1,509 ms
33,828 KB
testcase_09 AC 513 ms
24,356 KB
testcase_10 AC 2,141 ms
39,584 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 2,148 ms
40,352 KB
testcase_14 AC 391 ms
22,948 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 2,032 ms
32,768 KB
testcase_19 TLE -
testcase_20 AC 800 ms
19,072 KB
testcase_21 AC 1,208 ms
25,344 KB
testcase_22 TLE -
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
sys.setrecursionlimit(10**6)
from functools import lru_cache

@lru_cache(maxsize=1024)
def f(n):
    dp, size = 0, 1
    for u in G[n]:
        a, b = f(u)
        dp += a + b
        size += b
    return dp, size
        

N = int(readline())
G = [[] for i in range(N)]
for i in range(N - 1):
    A, B = map(int, readline().split())
    A, B = A - 1, B - 1
    G[A].append(B)
    
ans = 0
for i in range(N):
    a, b = f(i)
    ans += a
print(ans)
0