結果

問題 No.1637 Easy Tree Query
ユーザー 河野竜也河野竜也
提出日時 2021-08-24 23:53:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 344 bytes
コンパイル時間 566 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,416 KB
最終ジャッジ日時 2024-11-15 13:46:55
合計ジャッジ時間 22,237 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 993 ms
27,904 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 301 ms
19,712 KB
testcase_05 AC 755 ms
17,280 KB
testcase_06 AC 502 ms
15,616 KB
testcase_07 AC 256 ms
11,136 KB
testcase_08 AC 243 ms
17,792 KB
testcase_09 AC 667 ms
23,936 KB
testcase_10 AC 361 ms
14,464 KB
testcase_11 AC 895 ms
25,216 KB
testcase_12 AC 833 ms
21,888 KB
testcase_13 AC 176 ms
14,848 KB
testcase_14 AC 468 ms
24,320 KB
testcase_15 AC 822 ms
25,984 KB
testcase_16 AC 676 ms
27,520 KB
testcase_17 AC 252 ms
14,720 KB
testcase_18 AC 701 ms
17,280 KB
testcase_19 AC 702 ms
18,432 KB
testcase_20 AC 886 ms
21,632 KB
testcase_21 AC 481 ms
19,840 KB
testcase_22 AC 978 ms
28,032 KB
testcase_23 AC 257 ms
15,744 KB
testcase_24 AC 414 ms
19,968 KB
testcase_25 AC 776 ms
16,640 KB
testcase_26 AC 888 ms
22,656 KB
testcase_27 AC 1,037 ms
27,264 KB
testcase_28 AC 553 ms
16,384 KB
testcase_29 AC 710 ms
21,120 KB
testcase_30 AC 300 ms
21,120 KB
testcase_31 AC 567 ms
10,880 KB
testcase_32 AC 389 ms
16,768 KB
testcase_33 AC 692 ms
14,592 KB
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(x,p):
  cnt=1
  for i in g[x]:
    if i!=p:
      cnt+=dfs(i,x)
    ans[x]=cnt
  return cnt
n,q=map(int,input().split())
g=[[] for i in range(n+1)]
for i in range(n-1):
  a,b=map(int,input().split())
  g[a].append(b)
  g[b].append(a)
ans=[0]*(n+1)
dfs(1,-1)
a=0
for i in range(q):
  p,x=map(int,input().split())
  a+=ans[p]*x
  print(a)
0