結果

問題 No.1637 Easy Tree Query
ユーザー sotanishysotanishy
提出日時 2021-08-06 21:25:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 96,596 KB
最終ジャッジ日時 2024-09-17 03:28:53
合計ジャッジ時間 6,648 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,096 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 149 ms
88,064 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 116 ms
82,648 KB
testcase_05 AC 127 ms
80,768 KB
testcase_06 AC 109 ms
79,668 KB
testcase_07 AC 81 ms
76,800 KB
testcase_08 AC 102 ms
81,408 KB
testcase_09 AC 144 ms
85,760 KB
testcase_10 AC 98 ms
79,116 KB
testcase_11 AC 180 ms
86,600 KB
testcase_12 AC 172 ms
84,352 KB
testcase_13 AC 88 ms
78,976 KB
testcase_14 AC 136 ms
85,504 KB
testcase_15 AC 169 ms
87,084 KB
testcase_16 AC 165 ms
88,344 KB
testcase_17 AC 95 ms
78,848 KB
testcase_18 AC 124 ms
81,024 KB
testcase_19 AC 138 ms
81,536 KB
testcase_20 AC 160 ms
84,096 KB
testcase_21 AC 122 ms
82,948 KB
testcase_22 AC 191 ms
88,584 KB
testcase_23 AC 99 ms
80,128 KB
testcase_24 AC 124 ms
83,288 KB
testcase_25 AC 136 ms
80,640 KB
testcase_26 AC 166 ms
84,608 KB
testcase_27 AC 190 ms
87,936 KB
testcase_28 AC 120 ms
80,396 KB
testcase_29 AC 149 ms
83,584 KB
testcase_30 AC 124 ms
83,456 KB
testcase_31 AC 82 ms
76,288 KB
testcase_32 AC 109 ms
80,800 KB
testcase_33 AC 116 ms
79,588 KB
testcase_34 AC 112 ms
96,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, Q = map(int, input().split())
G = [[] for _ in range(N)]
for _ in range(N-1):
    a, b = map(lambda x: int(x) - 1, input().split())
    G[a].append(b)
    G[b].append(a)
size = [1] * N
st = [(0, -1, 0)]
while st:
    v, p, t = st.pop()
    if t == 0:
        st.append((v, p, 1))
        for c in G[v]:
            if c != p:
                st.append((c, v, 0))
    else:
        for c in G[v]:
            if c != p:
                size[v] += size[c]
ans = 0
for _ in range(Q):
    p, x = map(int, input().split())
    p -= 1
    ans += size[p] * x
    print(ans)
0