結果

問題 No.1637 Easy Tree Query
ユーザー roarisroaris
提出日時 2021-08-06 21:23:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 165,788 KB
最終ジャッジ日時 2024-09-17 03:24:20
合計ジャッジ時間 6,605 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 40 ms
53,888 KB
testcase_02 AC 140 ms
88,448 KB
testcase_03 AC 38 ms
53,888 KB
testcase_04 AC 103 ms
83,200 KB
testcase_05 AC 121 ms
81,144 KB
testcase_06 AC 100 ms
80,100 KB
testcase_07 AC 74 ms
76,544 KB
testcase_08 AC 96 ms
81,920 KB
testcase_09 AC 140 ms
85,760 KB
testcase_10 AC 90 ms
79,360 KB
testcase_11 AC 159 ms
87,232 KB
testcase_12 AC 153 ms
84,596 KB
testcase_13 AC 90 ms
79,232 KB
testcase_14 AC 139 ms
85,760 KB
testcase_15 AC 169 ms
87,040 KB
testcase_16 AC 163 ms
88,656 KB
testcase_17 AC 91 ms
79,616 KB
testcase_18 AC 113 ms
81,536 KB
testcase_19 AC 121 ms
82,176 KB
testcase_20 AC 145 ms
84,696 KB
testcase_21 AC 113 ms
83,072 KB
testcase_22 AC 171 ms
88,872 KB
testcase_23 AC 88 ms
80,356 KB
testcase_24 AC 109 ms
82,816 KB
testcase_25 AC 119 ms
80,768 KB
testcase_26 AC 145 ms
84,864 KB
testcase_27 AC 173 ms
88,064 KB
testcase_28 AC 105 ms
80,544 KB
testcase_29 AC 128 ms
83,584 KB
testcase_30 AC 119 ms
84,096 KB
testcase_31 AC 95 ms
76,544 KB
testcase_32 AC 108 ms
80,640 KB
testcase_33 AC 118 ms
79,232 KB
testcase_34 AC 232 ms
165,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10**5+10)
from collections import *

def dfs(v, pv=-1):
    for nv in G[v]:
        if nv==pv:
            continue
        
        dfs(nv, v)
        num[v] += num[nv]

N, Q = map(int, input().split())
G = [[] for _ 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)

num = [1]*N
dfs(0)
ans = 0

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