結果

問題 No.1637 Easy Tree Query
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-08-06 21:26:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,179 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 47,744 KB
最終ジャッジ日時 2024-09-17 03:34:54
合計ジャッジ時間 23,891 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 1,098 ms
28,032 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 336 ms
19,584 KB
testcase_05 AC 820 ms
17,152 KB
testcase_06 AC 550 ms
15,616 KB
testcase_07 AC 287 ms
11,136 KB
testcase_08 AC 274 ms
17,792 KB
testcase_09 AC 739 ms
23,808 KB
testcase_10 AC 395 ms
14,336 KB
testcase_11 AC 997 ms
25,216 KB
testcase_12 AC 926 ms
21,760 KB
testcase_13 AC 192 ms
14,720 KB
testcase_14 AC 540 ms
24,192 KB
testcase_15 AC 952 ms
25,728 KB
testcase_16 AC 793 ms
27,520 KB
testcase_17 AC 286 ms
14,720 KB
testcase_18 AC 748 ms
17,152 KB
testcase_19 AC 782 ms
18,304 KB
testcase_20 AC 974 ms
21,632 KB
testcase_21 AC 534 ms
19,840 KB
testcase_22 AC 1,085 ms
27,776 KB
testcase_23 AC 284 ms
15,616 KB
testcase_24 AC 458 ms
20,096 KB
testcase_25 AC 818 ms
16,640 KB
testcase_26 AC 994 ms
22,656 KB
testcase_27 AC 1,179 ms
27,264 KB
testcase_28 AC 634 ms
16,256 KB
testcase_29 AC 788 ms
21,120 KB
testcase_30 AC 345 ms
20,992 KB
testcase_31 AC 639 ms
10,752 KB
testcase_32 AC 417 ms
16,896 KB
testcase_33 AC 782 ms
14,592 KB
testcase_34 AC 463 ms
47,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 6)
n, q = map(int, input().split())
G = [[] for i in range(n)]
for _ in range(n - 1):
    a, b = map(int, input().split())
    G[a - 1].append(b - 1)
    G[b - 1].append(a - 1)
dp = [0] * n
def dfs(prev, cur):
    res = 1
    for nex in G[cur]:
        if nex != prev:
            res += dfs(cur, nex)
    dp[cur] = res
    return res
ans = 0
dfs(-1, 0)
for _ in range(q):
    p, x = map(int, input().split())
    ans += x * dp[p - 1]
    print(ans)
0