結果

問題 No.1637 Easy Tree Query
ユーザー googol_S0googol_S0
提出日時 2021-08-06 21:22:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 177,792 KB
最終ジャッジ日時 2024-09-17 03:19:43
合計ジャッジ時間 7,897 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 157 ms
88,192 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 128 ms
82,304 KB
testcase_05 AC 149 ms
80,768 KB
testcase_06 AC 125 ms
79,616 KB
testcase_07 AC 93 ms
76,416 KB
testcase_08 AC 124 ms
81,024 KB
testcase_09 AC 176 ms
85,504 KB
testcase_10 AC 111 ms
78,848 KB
testcase_11 AC 204 ms
86,400 KB
testcase_12 AC 182 ms
84,480 KB
testcase_13 AC 106 ms
79,104 KB
testcase_14 AC 171 ms
85,632 KB
testcase_15 AC 198 ms
86,912 KB
testcase_16 AC 211 ms
88,064 KB
testcase_17 AC 108 ms
78,848 KB
testcase_18 AC 140 ms
80,768 KB
testcase_19 AC 149 ms
82,048 KB
testcase_20 AC 172 ms
84,012 KB
testcase_21 AC 144 ms
82,688 KB
testcase_22 AC 213 ms
88,576 KB
testcase_23 AC 110 ms
80,000 KB
testcase_24 AC 137 ms
82,432 KB
testcase_25 AC 141 ms
80,384 KB
testcase_26 AC 184 ms
84,480 KB
testcase_27 AC 219 ms
87,972 KB
testcase_28 AC 125 ms
80,128 KB
testcase_29 AC 165 ms
83,584 KB
testcase_30 AC 143 ms
83,328 KB
testcase_31 AC 96 ms
75,904 KB
testcase_32 AC 121 ms
80,512 KB
testcase_33 AC 126 ms
78,848 KB
testcase_34 AC 361 ms
177,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.buffer.readline
sys.setrecursionlimit(10**6)
N,Q=map(int,input().split())
G=[[] for i in range(N)]
for i in range(N-1):
  a,b=map(int,input().split())
  a-=1
  b-=1
  G[a].append(b)
  G[b].append(a)
DP=[1]*N
def dfs(n,p):
  for i in range(len(G[n])):
    if G[n][i]!=p:
      DP[n]+=dfs(G[n][i],n)
  return DP[n]

dfs(0,-1)
ANS=0
for i in range(Q):
  p,x=map(int,input().split())
  ANS+=DP[p-1]*x
  print(ANS)
0