結果

問題 No.1637 Easy Tree Query
ユーザー るこーそーるこーそー
提出日時 2024-09-25 11:05:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 169,848 KB
最終ジャッジ日時 2024-09-25 11:05:48
合計ジャッジ時間 7,217 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,032 KB
testcase_01 AC 38 ms
52,316 KB
testcase_02 AC 163 ms
88,296 KB
testcase_03 AC 37 ms
52,212 KB
testcase_04 AC 113 ms
82,344 KB
testcase_05 AC 141 ms
80,756 KB
testcase_06 AC 114 ms
79,700 KB
testcase_07 AC 83 ms
76,280 KB
testcase_08 AC 102 ms
81,456 KB
testcase_09 AC 154 ms
85,676 KB
testcase_10 AC 102 ms
78,956 KB
testcase_11 AC 183 ms
86,792 KB
testcase_12 AC 167 ms
84,380 KB
testcase_13 AC 94 ms
79,244 KB
testcase_14 AC 156 ms
85,748 KB
testcase_15 AC 186 ms
86,916 KB
testcase_16 AC 201 ms
88,012 KB
testcase_17 AC 98 ms
79,396 KB
testcase_18 AC 132 ms
80,616 KB
testcase_19 AC 137 ms
81,576 KB
testcase_20 AC 169 ms
83,876 KB
testcase_21 AC 133 ms
82,676 KB
testcase_22 AC 198 ms
88,696 KB
testcase_23 AC 100 ms
79,440 KB
testcase_24 AC 124 ms
82,948 KB
testcase_25 AC 132 ms
80,280 KB
testcase_26 AC 169 ms
84,876 KB
testcase_27 AC 206 ms
87,856 KB
testcase_28 AC 120 ms
80,004 KB
testcase_29 AC 145 ms
83,840 KB
testcase_30 AC 128 ms
83,492 KB
testcase_31 AC 87 ms
76,364 KB
testcase_32 AC 116 ms
80,568 KB
testcase_33 AC 120 ms
79,200 KB
testcase_34 AC 244 ms
169,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

n,q=map(int,input().split())
graph=[[] for _ in range(n)]
for _ in range(n-1):
    u,v=map(lambda x:int(x)-1,input().split())
    graph[u].append(v)
    graph[v].append(u)

sub=[0]*n
def sub_calc(v,p):
    sub[v]=1
    for nv in graph[v]:
        if nv==p:continue
        sub[v]+=sub_calc(nv,v)
    return sub[v]

sub_calc(0,-1)

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