結果

問題 No.1637 Easy Tree Query
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-08-07 07:42:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 413 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 176,660 KB
最終ジャッジ日時 2024-09-17 11:24:50
合計ジャッジ時間 12,336 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 411 ms
89,344 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 185 ms
83,328 KB
testcase_05 AC 347 ms
81,920 KB
testcase_06 AC 275 ms
80,640 KB
testcase_07 AC 189 ms
77,184 KB
testcase_08 AC 168 ms
81,792 KB
testcase_09 AC 295 ms
86,400 KB
testcase_10 AC 215 ms
79,232 KB
testcase_11 AC 369 ms
87,296 KB
testcase_12 AC 353 ms
85,288 KB
testcase_13 AC 150 ms
79,744 KB
testcase_14 AC 288 ms
86,784 KB
testcase_15 AC 413 ms
88,192 KB
testcase_16 AC 303 ms
89,724 KB
testcase_17 AC 162 ms
79,800 KB
testcase_18 AC 311 ms
81,392 KB
testcase_19 AC 296 ms
83,300 KB
testcase_20 AC 362 ms
85,444 KB
testcase_21 AC 226 ms
83,360 KB
testcase_22 AC 395 ms
89,728 KB
testcase_23 AC 162 ms
80,708 KB
testcase_24 AC 205 ms
83,712 KB
testcase_25 AC 322 ms
81,408 KB
testcase_26 AC 355 ms
85,248 KB
testcase_27 AC 400 ms
89,236 KB
testcase_28 AC 258 ms
80,956 KB
testcase_29 AC 303 ms
84,480 KB
testcase_30 AC 169 ms
84,224 KB
testcase_31 AC 254 ms
76,416 KB
testcase_32 AC 239 ms
81,280 KB
testcase_33 AC 348 ms
79,572 KB
testcase_34 AC 288 ms
176,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 6)
n,q = map(int,input().split())
l = [[] for _ in range(n)]
for _ in range(n-1):
    a,b = map(int,input().split())
    l[a-1].append(b-1)
    l[b-1].append(a-1)
ans = 0
ne = [1] + [0] * (n - 1)
def dfs(node):
    res = 1
    for nd in l[node]:
        if ne[nd] == 0:
            ne[nd] = 1
            res += dfs(nd)
    ne[node] = res
    return res
dfs(0)
for _ in range(q):
    p,x = map(int,input().split())
    ans += ne[p-1] * x
    print(ans)
0