結果

問題 No.1637 Easy Tree Query
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-06-30 18:27:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 441 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 97,056 KB
最終ジャッジ日時 2024-06-30 18:28:11
合計ジャッジ時間 13,326 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,648 KB
testcase_01 AC 36 ms
52,872 KB
testcase_02 AC 396 ms
90,556 KB
testcase_03 AC 37 ms
53,284 KB
testcase_04 AC 188 ms
83,792 KB
testcase_05 AC 337 ms
82,068 KB
testcase_06 AC 262 ms
80,076 KB
testcase_07 AC 190 ms
77,108 KB
testcase_08 AC 169 ms
82,524 KB
testcase_09 AC 310 ms
87,136 KB
testcase_10 AC 221 ms
79,768 KB
testcase_11 AC 407 ms
87,920 KB
testcase_12 AC 357 ms
85,672 KB
testcase_13 AC 148 ms
80,048 KB
testcase_14 AC 234 ms
87,468 KB
testcase_15 AC 374 ms
88,688 KB
testcase_16 AC 320 ms
90,000 KB
testcase_17 AC 184 ms
79,652 KB
testcase_18 AC 317 ms
81,980 KB
testcase_19 AC 346 ms
82,556 KB
testcase_20 AC 396 ms
85,388 KB
testcase_21 AC 236 ms
83,752 KB
testcase_22 AC 392 ms
90,180 KB
testcase_23 AC 191 ms
80,652 KB
testcase_24 AC 222 ms
84,064 KB
testcase_25 AC 332 ms
81,580 KB
testcase_26 AC 383 ms
86,288 KB
testcase_27 AC 441 ms
89,844 KB
testcase_28 AC 267 ms
81,012 KB
testcase_29 AC 326 ms
84,520 KB
testcase_30 AC 174 ms
84,828 KB
testcase_31 AC 280 ms
76,304 KB
testcase_32 AC 209 ms
82,128 KB
testcase_33 AC 316 ms
79,916 KB
testcase_34 AC 153 ms
97,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,Q=map(int,input().split())
e=[[] for i in range(n)]
for i in range(n-1):
  a,b=map(int,input().split())
  a-=1
  b-=1
  e[a]+=[b]
  e[b]+=[a]
v=[0]*n
u=[0]*n
p=[0]*n
q=[0]
while len(q)>0:
  s=q[-1]
  if v[s]==0:
    v[s]=1
    for t in e[s]:
      if t!=p[s]:
        q+=[t]
        p[t]=s
  else:
    u[s]=1
    for t in e[s]:
      if t!=p[s]:
        u[s]+=u[t]
    q.pop()
g=0
for i in range(Q):
  p,x=map(int,input().split())
  p-=1
  g+=u[p]*x
  print(g)
0