結果

問題 No.1637 Easy Tree Query
ユーザー brthyyjpbrthyyjp
提出日時 2021-08-08 15:15:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 652 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 97,528 KB
最終ジャッジ日時 2024-09-19 11:36:36
合計ジャッジ時間 7,193 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 162 ms
97,360 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 115 ms
85,600 KB
testcase_05 AC 135 ms
84,448 KB
testcase_06 AC 109 ms
82,432 KB
testcase_07 AC 86 ms
76,928 KB
testcase_08 AC 112 ms
84,016 KB
testcase_09 AC 141 ms
92,192 KB
testcase_10 AC 109 ms
80,384 KB
testcase_11 AC 162 ms
94,568 KB
testcase_12 AC 147 ms
90,092 KB
testcase_13 AC 96 ms
80,512 KB
testcase_14 AC 142 ms
92,004 KB
testcase_15 AC 162 ms
95,076 KB
testcase_16 AC 164 ms
96,448 KB
testcase_17 AC 107 ms
80,512 KB
testcase_18 AC 138 ms
84,280 KB
testcase_19 AC 146 ms
85,652 KB
testcase_20 AC 167 ms
89,736 KB
testcase_21 AC 129 ms
87,332 KB
testcase_22 AC 187 ms
97,528 KB
testcase_23 AC 102 ms
81,408 KB
testcase_24 AC 124 ms
86,780 KB
testcase_25 AC 131 ms
83,880 KB
testcase_26 AC 159 ms
91,652 KB
testcase_27 AC 202 ms
97,084 KB
testcase_28 AC 118 ms
83,584 KB
testcase_29 AC 147 ms
88,584 KB
testcase_30 AC 126 ms
87,012 KB
testcase_31 AC 88 ms
78,208 KB
testcase_32 AC 116 ms
82,892 KB
testcase_33 AC 124 ms
82,688 KB
testcase_34 AC 100 ms
91,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

n, q = map(int, input().split())
g = [[] for i in range(n)]
for i in range(n-1):
    a, b = map(int, input().split())
    a, b = a-1, b-1
    g[a].append(b)
    g[b].append(a)

s = []
order = []
par = [-1]*n
s.append(0)
while s:
    v = s.pop()
    order.append(v)
    for u in g[v]:
        if par[v] == u:
            continue
        par[u] = v
        s.append(u)
order.reverse()
C = [1]*n
for v in order:
    if par[v] != -1:
        C[par[v]] += C[v]

ans = 0
for i in range(q):
    p, x = map(int, input().split())
    p -= 1
    ans += C[p]*x
    print(ans)
0