結果

問題 No.1637 Easy Tree Query
ユーザー rlangevinrlangevin
提出日時 2022-12-31 22:49:38
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 506 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 92,360 KB
最終ジャッジ日時 2024-11-26 22:32:30
合計ジャッジ時間 9,323 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,888 KB
testcase_01 AC 37 ms
52,936 KB
testcase_02 AC 158 ms
88,136 KB
testcase_03 AC 37 ms
52,488 KB
testcase_04 AC 116 ms
82,696 KB
testcase_05 AC 136 ms
80,916 KB
testcase_06 AC 115 ms
79,520 KB
testcase_07 AC 84 ms
76,404 KB
testcase_08 AC 114 ms
81,136 KB
testcase_09 AC 170 ms
85,556 KB
testcase_10 AC 104 ms
79,420 KB
testcase_11 AC 193 ms
86,940 KB
testcase_12 AC 170 ms
84,756 KB
testcase_13 AC 93 ms
79,172 KB
testcase_14 AC 158 ms
85,732 KB
testcase_15 AC 187 ms
87,096 KB
testcase_16 AC 197 ms
88,424 KB
testcase_17 AC 97 ms
79,108 KB
testcase_18 AC 129 ms
80,924 KB
testcase_19 AC 137 ms
81,896 KB
testcase_20 AC 159 ms
83,880 KB
testcase_21 AC 132 ms
82,868 KB
testcase_22 AC 199 ms
88,712 KB
testcase_23 AC 101 ms
79,636 KB
testcase_24 AC 132 ms
82,740 KB
testcase_25 AC 135 ms
80,396 KB
testcase_26 AC 175 ms
84,720 KB
testcase_27 AC 220 ms
88,000 KB
testcase_28 AC 122 ms
80,064 KB
testcase_29 AC 156 ms
83,760 KB
testcase_30 AC 132 ms
83,764 KB
testcase_31 AC 91 ms
76,188 KB
testcase_32 AC 113 ms
80,688 KB
testcase_33 AC 122 ms
78,944 KB
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

def dfs(s, p=-1):
    n = 1
    for u in G[s]:
        if u == p:
            continue
        n += dfs(u, s)
    dp[s] = n
    return n

N, Q = map(int, readline().split())
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)
    G[B].append(A)
    
dp = [0] * N
dfs(0)
ans = 0
for _ in range(Q):
    p, x = map(int, readline().split())
    p -= 1
    ans += dp[p] * x
    print(ans)
0