結果

問題 No.1637 Easy Tree Query
ユーザー 河野竜也河野竜也
提出日時 2021-09-12 20:50:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,146 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 46,976 KB
最終ジャッジ日時 2024-06-24 12:35:19
合計ジャッジ時間 23,924 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 1,095 ms
28,032 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 324 ms
19,840 KB
testcase_05 AC 813 ms
17,280 KB
testcase_06 AC 546 ms
15,616 KB
testcase_07 AC 287 ms
11,136 KB
testcase_08 AC 268 ms
17,792 KB
testcase_09 AC 725 ms
23,808 KB
testcase_10 AC 393 ms
14,592 KB
testcase_11 AC 953 ms
25,472 KB
testcase_12 AC 914 ms
22,016 KB
testcase_13 AC 191 ms
14,720 KB
testcase_14 AC 533 ms
24,320 KB
testcase_15 AC 919 ms
25,984 KB
testcase_16 AC 777 ms
27,648 KB
testcase_17 AC 284 ms
14,848 KB
testcase_18 AC 787 ms
17,408 KB
testcase_19 AC 760 ms
18,688 KB
testcase_20 AC 963 ms
21,760 KB
testcase_21 AC 524 ms
20,096 KB
testcase_22 AC 1,062 ms
28,032 KB
testcase_23 AC 286 ms
15,744 KB
testcase_24 AC 442 ms
20,096 KB
testcase_25 AC 823 ms
16,768 KB
testcase_26 AC 985 ms
22,656 KB
testcase_27 AC 1,146 ms
27,136 KB
testcase_28 AC 615 ms
16,384 KB
testcase_29 AC 770 ms
21,120 KB
testcase_30 AC 333 ms
21,120 KB
testcase_31 AC 623 ms
10,752 KB
testcase_32 AC 418 ms
17,024 KB
testcase_33 AC 751 ms
14,720 KB
testcase_34 AC 466 ms
46,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 9)
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)
s=[0]*n
def dfs(now,before):
  s[now]=1
  for next in g[now]:
    if next==before:
      continue
    dfs(next,now)
    s[now]+=s[next]
dfs(0,-1)
ans=0
for _ in range(q):
  p,x=map(int,input().split())
  p-=1
  ans+=s[p]*x
  print(ans)
0