結果

問題 No.1637 Easy Tree Query
ユーザー prd_xxxprd_xxx
提出日時 2021-08-06 23:04:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 598 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 52,480 KB
最終ジャッジ日時 2024-09-17 03:16:20
合計ジャッジ時間 12,471 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 477 ms
51,584 KB
testcase_03 WA -
testcase_04 AC 180 ms
27,776 KB
testcase_05 AC 349 ms
34,688 KB
testcase_06 AC 234 ms
27,136 KB
testcase_07 AC 117 ms
16,128 KB
testcase_08 AC 145 ms
24,192 KB
testcase_09 AC 355 ms
40,320 KB
testcase_10 AC 179 ms
22,656 KB
testcase_11 AC 460 ms
46,848 KB
testcase_12 AC 417 ms
42,112 KB
testcase_13 AC 104 ms
18,944 KB
testcase_14 AC 282 ms
36,864 KB
testcase_15 AC 429 ms
46,464 KB
testcase_16 AC 379 ms
44,928 KB
testcase_17 AC 134 ms
20,608 KB
testcase_18 AC 325 ms
33,536 KB
testcase_19 AC 334 ms
35,072 KB
testcase_20 AC 420 ms
42,496 KB
testcase_21 AC 256 ms
31,872 KB
testcase_22 AC 512 ms
51,584 KB
testcase_23 AC 139 ms
21,888 KB
testcase_24 AC 249 ms
30,336 KB
testcase_25 AC 348 ms
33,920 KB
testcase_26 AC 452 ms
44,032 KB
testcase_27 AC 549 ms
52,480 KB
testcase_28 AC 262 ms
29,184 KB
testcase_29 AC 375 ms
38,144 KB
testcase_30 AC 207 ms
29,184 KB
testcase_31 AC 241 ms
20,480 KB
testcase_32 AC 197 ms
25,984 KB
testcase_33 AC 313 ms
30,336 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10**8)
N,Q = map(int,input().split())
AB = [tuple(map(int,input().split())) for i in range(N-1)]
PX = [tuple(map(int,input().split())) for i in range(Q)]

es = [[] for _ in range(N)]
for a,b in AB:
    a,b = a-1,b-1
    es[a].append(b)
    es[b].append(a)

cs = [0] * N
def dfs(v,p=-1):
    if len(es[v])==1:
        cs[v] = 1
        return 1
    ret = 1
    for to in es[v]:
        if to==p: continue
        ret += dfs(to,v)
    cs[v] = ret
    return ret
dfs(0)

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