結果

問題 No.1637 Easy Tree Query
ユーザー raven7959raven7959
提出日時 2021-08-17 10:45:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 501 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 212,260 KB
最終ジャッジ日時 2024-10-10 07:27:06
合計ジャッジ時間 13,789 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,480 KB
testcase_01 AC 38 ms
52,336 KB
testcase_02 AC 435 ms
89,636 KB
testcase_03 AC 38 ms
53,508 KB
testcase_04 AC 202 ms
83,672 KB
testcase_05 AC 387 ms
81,212 KB
testcase_06 AC 283 ms
80,188 KB
testcase_07 AC 190 ms
77,312 KB
testcase_08 AC 193 ms
82,132 KB
testcase_09 AC 343 ms
86,980 KB
testcase_10 AC 232 ms
79,572 KB
testcase_11 AC 419 ms
87,992 KB
testcase_12 AC 434 ms
85,196 KB
testcase_13 AC 160 ms
79,620 KB
testcase_14 AC 266 ms
86,964 KB
testcase_15 AC 400 ms
88,640 KB
testcase_16 AC 370 ms
89,720 KB
testcase_17 AC 202 ms
79,780 KB
testcase_18 AC 360 ms
81,844 KB
testcase_19 AC 360 ms
83,052 KB
testcase_20 AC 443 ms
84,564 KB
testcase_21 AC 277 ms
83,836 KB
testcase_22 AC 482 ms
89,832 KB
testcase_23 AC 195 ms
80,644 KB
testcase_24 AC 263 ms
83,516 KB
testcase_25 AC 377 ms
81,180 KB
testcase_26 AC 440 ms
85,632 KB
testcase_27 AC 501 ms
89,056 KB
testcase_28 AC 306 ms
81,260 KB
testcase_29 AC 372 ms
84,072 KB
testcase_30 AC 210 ms
84,192 KB
testcase_31 AC 274 ms
76,120 KB
testcase_32 AC 244 ms
81,076 KB
testcase_33 AC 363 ms
79,300 KB
testcase_34 AC 365 ms
212,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**9)
N,Q=map(int,input().split())
G=[[] for _ in range(N)]
for i in range(N-1):
  a,b=map(lambda x:int(x)-1,input().split())
  G[a].append(b)
  G[b].append(a)
seen=[False]*N
subtree_size=[1]*N
def dfs(G,v,p=-1):
  seen[v]=True 
  for nextv in G[v]:
    if nextv!=p:
      dfs(G,nextv,v)
  for c in G[v]:
    if c!=p:
      subtree_size[v]+=subtree_size[c]
dfs(G,0)
ans=0
for i in range(Q):
  p,x=map(int,input().split())
  ans+=x*subtree_size[p-1]
  print(ans)
0