結果

問題 No.1637 Easy Tree Query
ユーザー ntudantuda
提出日時 2021-08-18 23:45:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 177,024 KB
最終ジャッジ日時 2024-10-11 22:26:33
合計ジャッジ時間 10,877 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 314 ms
109,296 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 196 ms
89,228 KB
testcase_05 AC 256 ms
95,228 KB
testcase_06 AC 217 ms
89,544 KB
testcase_07 AC 143 ms
81,152 KB
testcase_08 AC 173 ms
86,744 KB
testcase_09 AC 271 ms
98,944 KB
testcase_10 AC 174 ms
85,824 KB
testcase_11 AC 323 ms
103,504 KB
testcase_12 AC 290 ms
100,176 KB
testcase_13 AC 150 ms
83,288 KB
testcase_14 AC 250 ms
96,512 KB
testcase_15 AC 315 ms
103,552 KB
testcase_16 AC 305 ms
102,080 KB
testcase_17 AC 163 ms
84,252 KB
testcase_18 AC 245 ms
94,464 KB
testcase_19 AC 250 ms
95,040 KB
testcase_20 AC 298 ms
100,624 KB
testcase_21 AC 226 ms
92,496 KB
testcase_22 AC 338 ms
107,136 KB
testcase_23 AC 163 ms
85,376 KB
testcase_24 AC 208 ms
91,264 KB
testcase_25 AC 255 ms
94,428 KB
testcase_26 AC 309 ms
102,416 KB
testcase_27 AC 353 ms
107,756 KB
testcase_28 AC 215 ms
91,136 KB
testcase_29 AC 268 ms
97,280 KB
testcase_30 AC 200 ms
90,512 KB
testcase_31 AC 166 ms
85,980 KB
testcase_32 AC 192 ms
87,952 KB
testcase_33 AC 231 ms
91,776 KB
testcase_34 AC 317 ms
177,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(100000)

N,Q = map(int,input().split())
AB = [list(map(int,input().split())) for _ in range(N-1)]
PX = [list(map(int,input().split())) for _ in range(Q)]
E = [[] for _ in range(N)]

for ab in AB:
    a,b = ab
    E[a-1].append(b-1)
    E[b-1].append(a-1)
dp = [0] * N

def dfs(x,p):
    cnt = 1
    for i in E[x]:
        if i != p:
            cnt += dfs(i,x)
    dp[x] = cnt
    return cnt

dfs(0,-1)
ans = 0
for px in PX:
    p,x = px
    ans += dp[p-1] * x
    print(ans)
0